1 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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
|
// Code generated by protoc-gen-gogo.
// source: enumstringer.proto
// DO NOT EDIT!
/*
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 "code.google.com/p/gogoprotobuf/proto"
import json "encoding/json"
import math "math"
// discarding unused import gogoproto "code.google.com/p/gogoprotobuf/gogoproto/gogo.pb"
import fmt "fmt"
import bytes "bytes"
// 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 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
}
type NidOptEnum struct {
Field1 TheTestEnum `protobuf:"varint,1,opt,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 (m *NidOptEnum) GetField1() TheTestEnum {
if m != nil {
return m.Field1
}
return TheTestEnum_A
}
type NinOptEnum struct {
Field1 *TheTestEnum `protobuf:"varint,1,opt,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 (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,enum=enumstringer.TheTestEnum" json:"Field1"`
XXX_unrecognized []byte `json:"-"`
}
func (m *NidRepEnum) Reset() { *m = NidRepEnum{} }
func (m *NidRepEnum) String() string { return proto.CompactTextString(m) }
func (*NidRepEnum) ProtoMessage() {}
func (m *NidRepEnum) GetField1() []TheTestEnum {
if m != nil {
return m.Field1
}
return nil
}
type NinRepEnum struct {
Field1 []TheTestEnum `protobuf:"varint,1,rep,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 (m *NinRepEnum) GetField1() []TheTestEnum {
if m != nil {
return m.Field1
}
return nil
}
func init() {
proto.RegisterEnum("enumstringer.TheTestEnum", TheTestEnum_name, TheTestEnum_value)
}
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 {
res := rune(r.Uint32() % 1112064)
if 55296 <= res {
res += 2047
}
return res
}
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 (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 {
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 *NidOptEnumbut 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 {
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 {
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 *NinOptEnumbut 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 {
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 {
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 *NidRepEnumbut 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 {
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 {
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 *NinRepEnumbut 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 {
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
}
|