defaultcheck.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 defaultcheck plugin is used to check whether nullable is not used incorrectly.
  30. For instance:
  31. An error is caused if a nullable field:
  32. - has a default value,
  33. - is an enum which does not start at zero,
  34. - is used for an extension,
  35. - is used for a native proto3 type,
  36. - is used for a repeated native type.
  37. An error is also caused if a field with a default value is used in a message:
  38. - which is a face.
  39. - without getters.
  40. It is enabled by the following extensions:
  41. - nullable
  42. For incorrect usage of nullable with tests see:
  43. github.com/gogo/protobuf/test/nullableconflict
  44. */
  45. package defaultcheck
  46. import (
  47. "fmt"
  48. "github.com/gogo/protobuf/gogoproto"
  49. "github.com/gogo/protobuf/protoc-gen-gogo/generator"
  50. "os"
  51. )
  52. type plugin struct {
  53. *generator.Generator
  54. }
  55. func NewPlugin() *plugin {
  56. return &plugin{}
  57. }
  58. func (p *plugin) Name() string {
  59. return "defaultcheck"
  60. }
  61. func (p *plugin) Init(g *generator.Generator) {
  62. p.Generator = g
  63. }
  64. func (p *plugin) Generate(file *generator.FileDescriptor) {
  65. proto3 := gogoproto.IsProto3(file.FileDescriptorProto)
  66. for _, msg := range file.Messages() {
  67. getters := gogoproto.HasGoGetters(file.FileDescriptorProto, msg.DescriptorProto)
  68. face := gogoproto.IsFace(file.FileDescriptorProto, msg.DescriptorProto)
  69. for _, field := range msg.GetField() {
  70. if len(field.GetDefaultValue()) > 0 {
  71. if !getters {
  72. 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))
  73. os.Exit(1)
  74. }
  75. if face {
  76. 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))
  77. os.Exit(1)
  78. }
  79. }
  80. if gogoproto.IsNullable(field) {
  81. continue
  82. }
  83. if len(field.GetDefaultValue()) > 0 {
  84. 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))
  85. os.Exit(1)
  86. }
  87. if !field.IsMessage() && !gogoproto.IsCustomType(field) {
  88. if field.IsRepeated() {
  89. 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))
  90. } else if proto3 {
  91. 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))
  92. os.Exit(1)
  93. }
  94. if field.IsBytes() {
  95. 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))
  96. }
  97. }
  98. if !field.IsEnum() {
  99. continue
  100. }
  101. enum := p.ObjectNamed(field.GetTypeName()).(*generator.EnumDescriptor)
  102. if len(enum.Value) == 0 || enum.Value[0].GetNumber() != 0 {
  103. 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())
  104. os.Exit(1)
  105. }
  106. }
  107. }
  108. for _, e := range file.GetExtension() {
  109. if !gogoproto.IsNullable(e) {
  110. fmt.Fprintf(os.Stderr, "ERROR: extended field %v cannot be nullable %v", generator.CamelCase(e.GetName()), generator.CamelCase(*e.Name))
  111. os.Exit(1)
  112. }
  113. }
  114. }
  115. func (p *plugin) GenerateImports(*generator.FileDescriptor) {}
  116. func init() {
  117. generator.RegisterPlugin(NewPlugin())
  118. }