enumstringer.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 enumstringer (experimental) plugin generates a String method for each enum.
  30. It is enabled by the following extensions:
  31. - enum_stringer
  32. - enum_stringer_all
  33. This package is subject to change.
  34. */
  35. package enumstringer
  36. import (
  37. "github.com/gogo/protobuf/gogoproto"
  38. "github.com/gogo/protobuf/protoc-gen-gogo/generator"
  39. )
  40. type enumstringer struct {
  41. *generator.Generator
  42. generator.PluginImports
  43. atleastOne bool
  44. localName string
  45. }
  46. func NewEnumStringer() *enumstringer {
  47. return &enumstringer{}
  48. }
  49. func (p *enumstringer) Name() string {
  50. return "enumstringer"
  51. }
  52. func (p *enumstringer) Init(g *generator.Generator) {
  53. p.Generator = g
  54. }
  55. func (p *enumstringer) Generate(file *generator.FileDescriptor) {
  56. p.PluginImports = generator.NewPluginImports(p.Generator)
  57. p.atleastOne = false
  58. p.localName = generator.FileName(file)
  59. strconvPkg := p.NewImport("strconv")
  60. for _, enum := range file.Enums() {
  61. if !gogoproto.IsEnumStringer(file.FileDescriptorProto, enum.EnumDescriptorProto) {
  62. continue
  63. }
  64. if gogoproto.IsGoEnumStringer(file.FileDescriptorProto, enum.EnumDescriptorProto) {
  65. 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")
  66. }
  67. p.atleastOne = true
  68. ccTypeName := generator.CamelCaseSlice(enum.TypeName())
  69. p.P("func (x ", ccTypeName, ") String() string {")
  70. p.In()
  71. p.P(`s, ok := `, ccTypeName, `_name[int32(x)]`)
  72. p.P(`if ok {`)
  73. p.In()
  74. p.P(`return s`)
  75. p.Out()
  76. p.P(`}`)
  77. p.P(`return `, strconvPkg.Use(), `.Itoa(int(x))`)
  78. p.Out()
  79. p.P(`}`)
  80. }
  81. if !p.atleastOne {
  82. return
  83. }
  84. }
  85. func init() {
  86. generator.RegisterPlugin(NewEnumStringer())
  87. }