equal.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. // Protocol Buffers for Go with Gadgets
  2. //
  3. // Copyright (c) 2013, The GoGo Authors. All rights reserved.
  4. // http://github.com/gogo/protobuf
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions are
  8. // met:
  9. //
  10. // * Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above
  13. // copyright notice, this list of conditions and the following disclaimer
  14. // in the documentation and/or other materials provided with the
  15. // distribution.
  16. //
  17. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. /*
  29. The equal plugin generates an Equal and a VerboseEqual method for each message.
  30. These equal methods are quite obvious.
  31. The only difference is that VerboseEqual returns a non nil error if it is not equal.
  32. This error contains more detail on exactly which part of the message was not equal to the other message.
  33. The idea is that this is useful for debugging.
  34. Equal is enabled using the following extensions:
  35. - equal
  36. - equal_all
  37. While VerboseEqual is enable dusing the following extensions:
  38. - verbose_equal
  39. - verbose_equal_all
  40. The equal plugin also generates a test given it is enabled using one of the following extensions:
  41. - testgen
  42. - testgen_all
  43. Let us look at:
  44. github.com/gogo/protobuf/test/example/example.proto
  45. Btw all the output can be seen at:
  46. github.com/gogo/protobuf/test/example/*
  47. The following message:
  48. option (gogoproto.equal_all) = true;
  49. option (gogoproto.verbose_equal_all) = true;
  50. message B {
  51. optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true];
  52. repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false];
  53. }
  54. given to the equal plugin, will generate the following code:
  55. func (this *B) VerboseEqual(that interface{}) error {
  56. if that == nil {
  57. if this == nil {
  58. return nil
  59. }
  60. return fmt2.Errorf("that == nil && this != nil")
  61. }
  62. that1, ok := that.(*B)
  63. if !ok {
  64. return fmt2.Errorf("that is not of type *B")
  65. }
  66. if that1 == nil {
  67. if this == nil {
  68. return nil
  69. }
  70. return fmt2.Errorf("that is type *B but is nil && this != nil")
  71. } else if this == nil {
  72. return fmt2.Errorf("that is type *B but is not nil && this == nil")
  73. }
  74. if !this.A.Equal(&that1.A) {
  75. return fmt2.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A)
  76. }
  77. if len(this.G) != len(that1.G) {
  78. return fmt2.Errorf("G this(%v) Not Equal that(%v)", len(this.G), len(that1.G))
  79. }
  80. for i := range this.G {
  81. if !this.G[i].Equal(that1.G[i]) {
  82. return fmt2.Errorf("G this[%v](%v) Not Equal that[%v](%v)", i, this.G[i], i, that1.G[i])
  83. }
  84. }
  85. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  86. return fmt2.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
  87. }
  88. return nil
  89. }
  90. func (this *B) Equal(that interface{}) bool {
  91. if that == nil {
  92. return this == nil
  93. }
  94. that1, ok := that.(*B)
  95. if !ok {
  96. return false
  97. }
  98. if that1 == nil {
  99. return this == nil
  100. } else if this == nil {
  101. return false
  102. }
  103. if !this.A.Equal(&that1.A) {
  104. return false
  105. }
  106. if len(this.G) != len(that1.G) {
  107. return false
  108. }
  109. for i := range this.G {
  110. if !this.G[i].Equal(that1.G[i]) {
  111. return false
  112. }
  113. }
  114. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  115. return false
  116. }
  117. return true
  118. }
  119. and the following test code:
  120. func TestBVerboseEqual(t *testing8.T) {
  121. popr := math_rand8.New(math_rand8.NewSource(time8.Now().UnixNano()))
  122. p := NewPopulatedB(popr, false)
  123. dAtA, err := github_com_gogo_protobuf_proto2.Marshal(p)
  124. if err != nil {
  125. panic(err)
  126. }
  127. msg := &B{}
  128. if err := github_com_gogo_protobuf_proto2.Unmarshal(dAtA, msg); err != nil {
  129. panic(err)
  130. }
  131. if err := p.VerboseEqual(msg); err != nil {
  132. t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)
  133. }
  134. */
  135. package equal
  136. import (
  137. "github.com/gogo/protobuf/gogoproto"
  138. "github.com/gogo/protobuf/proto"
  139. descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
  140. "github.com/gogo/protobuf/protoc-gen-gogo/generator"
  141. "github.com/gogo/protobuf/vanity"
  142. )
  143. type plugin struct {
  144. *generator.Generator
  145. generator.PluginImports
  146. fmtPkg generator.Single
  147. bytesPkg generator.Single
  148. protoPkg generator.Single
  149. }
  150. func NewPlugin() *plugin {
  151. return &plugin{}
  152. }
  153. func (p *plugin) Name() string {
  154. return "equal"
  155. }
  156. func (p *plugin) Init(g *generator.Generator) {
  157. p.Generator = g
  158. }
  159. func (p *plugin) Generate(file *generator.FileDescriptor) {
  160. p.PluginImports = generator.NewPluginImports(p.Generator)
  161. p.fmtPkg = p.NewImport("fmt")
  162. p.bytesPkg = p.NewImport("bytes")
  163. p.protoPkg = p.NewImport("github.com/gogo/protobuf/proto")
  164. for _, msg := range file.Messages() {
  165. if msg.DescriptorProto.GetOptions().GetMapEntry() {
  166. continue
  167. }
  168. if gogoproto.HasVerboseEqual(file.FileDescriptorProto, msg.DescriptorProto) {
  169. p.generateMessage(file, msg, true)
  170. }
  171. if gogoproto.HasEqual(file.FileDescriptorProto, msg.DescriptorProto) {
  172. p.generateMessage(file, msg, false)
  173. }
  174. }
  175. }
  176. func (p *plugin) generateNullableField(fieldname string, verbose bool) {
  177. p.P(`if this.`, fieldname, ` != nil && that1.`, fieldname, ` != nil {`)
  178. p.In()
  179. p.P(`if *this.`, fieldname, ` != *that1.`, fieldname, `{`)
  180. p.In()
  181. if verbose {
  182. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", *this.`, fieldname, `, *that1.`, fieldname, `)`)
  183. } else {
  184. p.P(`return false`)
  185. }
  186. p.Out()
  187. p.P(`}`)
  188. p.Out()
  189. p.P(`} else if this.`, fieldname, ` != nil {`)
  190. p.In()
  191. if verbose {
  192. p.P(`return `, p.fmtPkg.Use(), `.Errorf("this.`, fieldname, ` == nil && that.`, fieldname, ` != nil")`)
  193. } else {
  194. p.P(`return false`)
  195. }
  196. p.Out()
  197. p.P(`} else if that1.`, fieldname, ` != nil {`)
  198. }
  199. func (p *plugin) generateMsgNullAndTypeCheck(ccTypeName string, verbose bool) {
  200. p.P(`if that == nil {`)
  201. p.In()
  202. if verbose {
  203. p.P(`if this == nil {`)
  204. p.In()
  205. p.P(`return nil`)
  206. p.Out()
  207. p.P(`}`)
  208. p.P(`return `, p.fmtPkg.Use(), `.Errorf("that == nil && this != nil")`)
  209. } else {
  210. p.P(`return this == nil`)
  211. }
  212. p.Out()
  213. p.P(`}`)
  214. p.P(``)
  215. p.P(`that1, ok := that.(*`, ccTypeName, `)`)
  216. p.P(`if !ok {`)
  217. p.In()
  218. p.P(`that2, ok := that.(`, ccTypeName, `)`)
  219. p.P(`if ok {`)
  220. p.In()
  221. p.P(`that1 = &that2`)
  222. p.Out()
  223. p.P(`} else {`)
  224. p.In()
  225. if verbose {
  226. p.P(`return `, p.fmtPkg.Use(), `.Errorf("that is not of type *`, ccTypeName, `")`)
  227. } else {
  228. p.P(`return false`)
  229. }
  230. p.Out()
  231. p.P(`}`)
  232. p.Out()
  233. p.P(`}`)
  234. p.P(`if that1 == nil {`)
  235. p.In()
  236. if verbose {
  237. p.P(`if this == nil {`)
  238. p.In()
  239. p.P(`return nil`)
  240. p.Out()
  241. p.P(`}`)
  242. p.P(`return `, p.fmtPkg.Use(), `.Errorf("that is type *`, ccTypeName, ` but is nil && this != nil")`)
  243. } else {
  244. p.P(`return this == nil`)
  245. }
  246. p.Out()
  247. p.P(`} else if this == nil {`)
  248. p.In()
  249. if verbose {
  250. p.P(`return `, p.fmtPkg.Use(), `.Errorf("that is type *`, ccTypeName, ` but is not nil && this == nil")`)
  251. } else {
  252. p.P(`return false`)
  253. }
  254. p.Out()
  255. p.P(`}`)
  256. }
  257. func (p *plugin) generateField(file *generator.FileDescriptor, message *generator.Descriptor, field *descriptor.FieldDescriptorProto, verbose bool) {
  258. proto3 := gogoproto.IsProto3(file.FileDescriptorProto)
  259. fieldname := p.GetOneOfFieldName(message, field)
  260. repeated := field.IsRepeated()
  261. ctype := gogoproto.IsCustomType(field)
  262. nullable := gogoproto.IsNullable(field)
  263. isDuration := gogoproto.IsStdDuration(field)
  264. isTimestamp := gogoproto.IsStdTime(field)
  265. // oneof := field.OneofIndex != nil
  266. if !repeated {
  267. if ctype || isTimestamp {
  268. if nullable {
  269. p.P(`if that1.`, fieldname, ` == nil {`)
  270. p.In()
  271. p.P(`if this.`, fieldname, ` != nil {`)
  272. p.In()
  273. if verbose {
  274. p.P(`return `, p.fmtPkg.Use(), `.Errorf("this.`, fieldname, ` != nil && that1.`, fieldname, ` == nil")`)
  275. } else {
  276. p.P(`return false`)
  277. }
  278. p.Out()
  279. p.P(`}`)
  280. p.Out()
  281. p.P(`} else if !this.`, fieldname, `.Equal(*that1.`, fieldname, `) {`)
  282. } else {
  283. p.P(`if !this.`, fieldname, `.Equal(that1.`, fieldname, `) {`)
  284. }
  285. p.In()
  286. if verbose {
  287. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`)
  288. } else {
  289. p.P(`return false`)
  290. }
  291. p.Out()
  292. p.P(`}`)
  293. } else if isDuration {
  294. if nullable {
  295. p.generateNullableField(fieldname, verbose)
  296. } else {
  297. p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`)
  298. }
  299. p.In()
  300. if verbose {
  301. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`)
  302. } else {
  303. p.P(`return false`)
  304. }
  305. p.Out()
  306. p.P(`}`)
  307. } else {
  308. if field.IsMessage() || p.IsGroup(field) {
  309. if nullable {
  310. p.P(`if !this.`, fieldname, `.Equal(that1.`, fieldname, `) {`)
  311. } else {
  312. p.P(`if !this.`, fieldname, `.Equal(&that1.`, fieldname, `) {`)
  313. }
  314. } else if field.IsBytes() {
  315. p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `, that1.`, fieldname, `) {`)
  316. } else if field.IsString() {
  317. if nullable && !proto3 {
  318. p.generateNullableField(fieldname, verbose)
  319. } else {
  320. p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`)
  321. }
  322. } else {
  323. if nullable && !proto3 {
  324. p.generateNullableField(fieldname, verbose)
  325. } else {
  326. p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`)
  327. }
  328. }
  329. p.In()
  330. if verbose {
  331. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`)
  332. } else {
  333. p.P(`return false`)
  334. }
  335. p.Out()
  336. p.P(`}`)
  337. }
  338. } else {
  339. p.P(`if len(this.`, fieldname, `) != len(that1.`, fieldname, `) {`)
  340. p.In()
  341. if verbose {
  342. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", len(this.`, fieldname, `), len(that1.`, fieldname, `))`)
  343. } else {
  344. p.P(`return false`)
  345. }
  346. p.Out()
  347. p.P(`}`)
  348. p.P(`for i := range this.`, fieldname, ` {`)
  349. p.In()
  350. if ctype && !p.IsMap(field) {
  351. p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) {`)
  352. } else if isTimestamp {
  353. if nullable {
  354. p.P(`if !this.`, fieldname, `[i].Equal(*that1.`, fieldname, `[i]) {`)
  355. } else {
  356. p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) {`)
  357. }
  358. } else if isDuration {
  359. if nullable {
  360. 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) {`)
  361. } else {
  362. p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`)
  363. }
  364. } else {
  365. if p.IsMap(field) {
  366. m := p.GoMapType(nil, field)
  367. valuegoTyp, _ := p.GoType(nil, m.ValueField)
  368. valuegoAliasTyp, _ := p.GoType(nil, m.ValueAliasField)
  369. nullable, valuegoTyp, valuegoAliasTyp = generator.GoMapValueTypes(field, m.ValueField, valuegoTyp, valuegoAliasTyp)
  370. mapValue := m.ValueAliasField
  371. if mapValue.IsMessage() || p.IsGroup(mapValue) {
  372. if nullable && valuegoTyp == valuegoAliasTyp {
  373. p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) {`)
  374. } else {
  375. // Equal() has a pointer receiver, but map value is a value type
  376. a := `this.` + fieldname + `[i]`
  377. b := `that1.` + fieldname + `[i]`
  378. if valuegoTyp != valuegoAliasTyp {
  379. // cast back to the type that has the generated methods on it
  380. a = `(` + valuegoTyp + `)(` + a + `)`
  381. b = `(` + valuegoTyp + `)(` + b + `)`
  382. }
  383. p.P(`a := `, a)
  384. p.P(`b := `, b)
  385. if nullable {
  386. p.P(`if !a.Equal(b) {`)
  387. } else {
  388. p.P(`if !(&a).Equal(&b) {`)
  389. }
  390. }
  391. } else if mapValue.IsBytes() {
  392. if ctype {
  393. if nullable {
  394. p.P(`if !this.`, fieldname, `[i].Equal(*that1.`, fieldname, `[i]) { //nullable`)
  395. } else {
  396. p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) { //not nullable`)
  397. }
  398. } else {
  399. p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `[i], that1.`, fieldname, `[i]) {`)
  400. }
  401. } else if mapValue.IsString() {
  402. p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`)
  403. } else {
  404. p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`)
  405. }
  406. } else if field.IsMessage() || p.IsGroup(field) {
  407. if nullable {
  408. p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) {`)
  409. } else {
  410. p.P(`if !this.`, fieldname, `[i].Equal(&that1.`, fieldname, `[i]) {`)
  411. }
  412. } else if field.IsBytes() {
  413. p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `[i], that1.`, fieldname, `[i]) {`)
  414. } else if field.IsString() {
  415. p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`)
  416. } else {
  417. p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`)
  418. }
  419. }
  420. p.In()
  421. if verbose {
  422. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this[%v](%v) Not Equal that[%v](%v)", i, this.`, fieldname, `[i], i, that1.`, fieldname, `[i])`)
  423. } else {
  424. p.P(`return false`)
  425. }
  426. p.Out()
  427. p.P(`}`)
  428. p.Out()
  429. p.P(`}`)
  430. }
  431. }
  432. func (p *plugin) generateMessage(file *generator.FileDescriptor, message *generator.Descriptor, verbose bool) {
  433. ccTypeName := generator.CamelCaseSlice(message.TypeName())
  434. if verbose {
  435. p.P(`func (this *`, ccTypeName, `) VerboseEqual(that interface{}) error {`)
  436. } else {
  437. p.P(`func (this *`, ccTypeName, `) Equal(that interface{}) bool {`)
  438. }
  439. p.In()
  440. p.generateMsgNullAndTypeCheck(ccTypeName, verbose)
  441. oneofs := make(map[string]struct{})
  442. for _, field := range message.Field {
  443. oneof := field.OneofIndex != nil
  444. if oneof {
  445. fieldname := p.GetFieldName(message, field)
  446. if _, ok := oneofs[fieldname]; ok {
  447. continue
  448. } else {
  449. oneofs[fieldname] = struct{}{}
  450. }
  451. p.P(`if that1.`, fieldname, ` == nil {`)
  452. p.In()
  453. p.P(`if this.`, fieldname, ` != nil {`)
  454. p.In()
  455. if verbose {
  456. p.P(`return `, p.fmtPkg.Use(), `.Errorf("this.`, fieldname, ` != nil && that1.`, fieldname, ` == nil")`)
  457. } else {
  458. p.P(`return false`)
  459. }
  460. p.Out()
  461. p.P(`}`)
  462. p.Out()
  463. p.P(`} else if this.`, fieldname, ` == nil {`)
  464. p.In()
  465. if verbose {
  466. p.P(`return `, p.fmtPkg.Use(), `.Errorf("this.`, fieldname, ` == nil && that1.`, fieldname, ` != nil")`)
  467. } else {
  468. p.P(`return false`)
  469. }
  470. p.Out()
  471. if verbose {
  472. p.P(`} else if err := this.`, fieldname, `.VerboseEqual(that1.`, fieldname, `); err != nil {`)
  473. } else {
  474. p.P(`} else if !this.`, fieldname, `.Equal(that1.`, fieldname, `) {`)
  475. }
  476. p.In()
  477. if verbose {
  478. p.P(`return err`)
  479. } else {
  480. p.P(`return false`)
  481. }
  482. p.Out()
  483. p.P(`}`)
  484. } else {
  485. p.generateField(file, message, field, verbose)
  486. }
  487. }
  488. if message.DescriptorProto.HasExtension() {
  489. if gogoproto.HasExtensionsMap(file.FileDescriptorProto, message.DescriptorProto) {
  490. fieldname := "XXX_InternalExtensions"
  491. p.P(`thismap := `, p.protoPkg.Use(), `.GetUnsafeExtensionsMap(this)`)
  492. p.P(`thatmap := `, p.protoPkg.Use(), `.GetUnsafeExtensionsMap(that1)`)
  493. p.P(`for k, v := range thismap {`)
  494. p.In()
  495. p.P(`if v2, ok := thatmap[k]; ok {`)
  496. p.In()
  497. p.P(`if !v.Equal(&v2) {`)
  498. p.In()
  499. if verbose {
  500. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k])`)
  501. } else {
  502. p.P(`return false`)
  503. }
  504. p.Out()
  505. p.P(`}`)
  506. p.Out()
  507. p.P(`} else {`)
  508. p.In()
  509. if verbose {
  510. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, `[%v] Not In that", k)`)
  511. } else {
  512. p.P(`return false`)
  513. }
  514. p.Out()
  515. p.P(`}`)
  516. p.Out()
  517. p.P(`}`)
  518. p.P(`for k, _ := range thatmap {`)
  519. p.In()
  520. p.P(`if _, ok := thismap[k]; !ok {`)
  521. p.In()
  522. if verbose {
  523. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, `[%v] Not In this", k)`)
  524. } else {
  525. p.P(`return false`)
  526. }
  527. p.Out()
  528. p.P(`}`)
  529. p.Out()
  530. p.P(`}`)
  531. } else {
  532. fieldname := "XXX_extensions"
  533. p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `, that1.`, fieldname, `) {`)
  534. p.In()
  535. if verbose {
  536. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`)
  537. } else {
  538. p.P(`return false`)
  539. }
  540. p.Out()
  541. p.P(`}`)
  542. }
  543. }
  544. if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) {
  545. fieldname := "XXX_unrecognized"
  546. p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `, that1.`, fieldname, `) {`)
  547. p.In()
  548. if verbose {
  549. p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`)
  550. } else {
  551. p.P(`return false`)
  552. }
  553. p.Out()
  554. p.P(`}`)
  555. }
  556. if verbose {
  557. p.P(`return nil`)
  558. } else {
  559. p.P(`return true`)
  560. }
  561. p.Out()
  562. p.P(`}`)
  563. //Generate Equal methods for oneof fields
  564. m := proto.Clone(message.DescriptorProto).(*descriptor.DescriptorProto)
  565. for _, field := range m.Field {
  566. oneof := field.OneofIndex != nil
  567. if !oneof {
  568. continue
  569. }
  570. ccTypeName := p.OneOfTypeName(message, field)
  571. if verbose {
  572. p.P(`func (this *`, ccTypeName, `) VerboseEqual(that interface{}) error {`)
  573. } else {
  574. p.P(`func (this *`, ccTypeName, `) Equal(that interface{}) bool {`)
  575. }
  576. p.In()
  577. p.generateMsgNullAndTypeCheck(ccTypeName, verbose)
  578. vanity.TurnOffNullableForNativeTypes(field)
  579. p.generateField(file, message, field, verbose)
  580. if verbose {
  581. p.P(`return nil`)
  582. } else {
  583. p.P(`return true`)
  584. }
  585. p.Out()
  586. p.P(`}`)
  587. }
  588. }
  589. func init() {
  590. generator.RegisterPlugin(NewPlugin())
  591. }