file.go 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. // Protocol Buffers for Go with Gadgets
  2. //
  3. // Copyright (c) 2015, 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. package vanity
  29. import (
  30. "path/filepath"
  31. "github.com/gogo/protobuf/gogoproto"
  32. "github.com/gogo/protobuf/proto"
  33. descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
  34. )
  35. func NotGoogleProtobufDescriptorProto(file *descriptor.FileDescriptorProto) bool {
  36. // can not just check if file.GetName() == "google/protobuf/descriptor.proto" because we do not want to assume compile path
  37. _, fileName := filepath.Split(file.GetName())
  38. return !(file.GetPackage() == "google.protobuf" && fileName == "descriptor.proto")
  39. }
  40. func FilterFiles(files []*descriptor.FileDescriptorProto, f func(file *descriptor.FileDescriptorProto) bool) []*descriptor.FileDescriptorProto {
  41. filtered := make([]*descriptor.FileDescriptorProto, 0, len(files))
  42. for i := range files {
  43. if !f(files[i]) {
  44. continue
  45. }
  46. filtered = append(filtered, files[i])
  47. }
  48. return filtered
  49. }
  50. func FileHasBoolExtension(file *descriptor.FileDescriptorProto, extension *proto.ExtensionDesc) bool {
  51. if file.Options == nil {
  52. return false
  53. }
  54. value, err := proto.GetExtension(file.Options, extension)
  55. if err != nil {
  56. return false
  57. }
  58. if value == nil {
  59. return false
  60. }
  61. if value.(*bool) == nil {
  62. return false
  63. }
  64. return true
  65. }
  66. func SetBoolFileOption(extension *proto.ExtensionDesc, value bool) func(file *descriptor.FileDescriptorProto) {
  67. return func(file *descriptor.FileDescriptorProto) {
  68. if FileHasBoolExtension(file, extension) {
  69. return
  70. }
  71. if file.Options == nil {
  72. file.Options = &descriptor.FileOptions{}
  73. }
  74. if err := proto.SetExtension(file.Options, extension, &value); err != nil {
  75. panic(err)
  76. }
  77. }
  78. }
  79. func TurnOffGoGettersAll(file *descriptor.FileDescriptorProto) {
  80. SetBoolFileOption(gogoproto.E_GoprotoGettersAll, false)(file)
  81. }
  82. func TurnOffGoEnumPrefixAll(file *descriptor.FileDescriptorProto) {
  83. SetBoolFileOption(gogoproto.E_GoprotoEnumPrefixAll, false)(file)
  84. }
  85. func TurnOffGoStringerAll(file *descriptor.FileDescriptorProto) {
  86. SetBoolFileOption(gogoproto.E_GoprotoStringerAll, false)(file)
  87. }
  88. func TurnOnVerboseEqualAll(file *descriptor.FileDescriptorProto) {
  89. SetBoolFileOption(gogoproto.E_VerboseEqualAll, true)(file)
  90. }
  91. func TurnOnFaceAll(file *descriptor.FileDescriptorProto) {
  92. SetBoolFileOption(gogoproto.E_FaceAll, true)(file)
  93. }
  94. func TurnOnGoStringAll(file *descriptor.FileDescriptorProto) {
  95. SetBoolFileOption(gogoproto.E_GostringAll, true)(file)
  96. }
  97. func TurnOnPopulateAll(file *descriptor.FileDescriptorProto) {
  98. SetBoolFileOption(gogoproto.E_PopulateAll, true)(file)
  99. }
  100. func TurnOnStringerAll(file *descriptor.FileDescriptorProto) {
  101. SetBoolFileOption(gogoproto.E_StringerAll, true)(file)
  102. }
  103. func TurnOnEqualAll(file *descriptor.FileDescriptorProto) {
  104. SetBoolFileOption(gogoproto.E_EqualAll, true)(file)
  105. }
  106. func TurnOnDescriptionAll(file *descriptor.FileDescriptorProto) {
  107. SetBoolFileOption(gogoproto.E_DescriptionAll, true)(file)
  108. }
  109. func TurnOnTestGenAll(file *descriptor.FileDescriptorProto) {
  110. SetBoolFileOption(gogoproto.E_TestgenAll, true)(file)
  111. }
  112. func TurnOnBenchGenAll(file *descriptor.FileDescriptorProto) {
  113. SetBoolFileOption(gogoproto.E_BenchgenAll, true)(file)
  114. }
  115. func TurnOnMarshalerAll(file *descriptor.FileDescriptorProto) {
  116. SetBoolFileOption(gogoproto.E_MarshalerAll, true)(file)
  117. }
  118. func TurnOnUnmarshalerAll(file *descriptor.FileDescriptorProto) {
  119. SetBoolFileOption(gogoproto.E_UnmarshalerAll, true)(file)
  120. }
  121. func TurnOnStable_MarshalerAll(file *descriptor.FileDescriptorProto) {
  122. SetBoolFileOption(gogoproto.E_StableMarshalerAll, true)(file)
  123. }
  124. func TurnOnSizerAll(file *descriptor.FileDescriptorProto) {
  125. SetBoolFileOption(gogoproto.E_SizerAll, true)(file)
  126. }
  127. func TurnOffGoEnumStringerAll(file *descriptor.FileDescriptorProto) {
  128. SetBoolFileOption(gogoproto.E_GoprotoEnumStringerAll, false)(file)
  129. }
  130. func TurnOnEnumStringerAll(file *descriptor.FileDescriptorProto) {
  131. SetBoolFileOption(gogoproto.E_EnumStringerAll, true)(file)
  132. }
  133. func TurnOnUnsafeUnmarshalerAll(file *descriptor.FileDescriptorProto) {
  134. SetBoolFileOption(gogoproto.E_UnsafeUnmarshalerAll, true)(file)
  135. }
  136. func TurnOnUnsafeMarshalerAll(file *descriptor.FileDescriptorProto) {
  137. SetBoolFileOption(gogoproto.E_UnsafeMarshalerAll, true)(file)
  138. }
  139. func TurnOffGoExtensionsMapAll(file *descriptor.FileDescriptorProto) {
  140. SetBoolFileOption(gogoproto.E_GoprotoExtensionsMapAll, false)(file)
  141. }
  142. func TurnOffGoUnrecognizedAll(file *descriptor.FileDescriptorProto) {
  143. SetBoolFileOption(gogoproto.E_GoprotoUnrecognizedAll, false)(file)
  144. }
  145. func TurnOffGogoImport(file *descriptor.FileDescriptorProto) {
  146. SetBoolFileOption(gogoproto.E_GogoprotoImport, false)(file)
  147. }
  148. func TurnOnCompareAll(file *descriptor.FileDescriptorProto) {
  149. SetBoolFileOption(gogoproto.E_CompareAll, true)(file)
  150. }
  151. func TurnOnMessageNameAll(file *descriptor.FileDescriptorProto) {
  152. SetBoolFileOption(gogoproto.E_MessagenameAll, true)(file)
  153. }
  154. func TurnOnGoRegistration(file *descriptor.FileDescriptorProto) {
  155. SetBoolFileOption(gogoproto.E_GoprotoRegistration, true)(file)
  156. }