helper.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  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. package gogoproto
  29. import google_protobuf "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
  30. import proto "github.com/gogo/protobuf/proto"
  31. func IsEmbed(field *google_protobuf.FieldDescriptorProto) bool {
  32. return proto.GetBoolExtension(field.Options, E_Embed, false)
  33. }
  34. func IsNullable(field *google_protobuf.FieldDescriptorProto) bool {
  35. return proto.GetBoolExtension(field.Options, E_Nullable, true)
  36. }
  37. func IsStdTime(field *google_protobuf.FieldDescriptorProto) bool {
  38. return proto.GetBoolExtension(field.Options, E_Stdtime, false)
  39. }
  40. func IsStdDuration(field *google_protobuf.FieldDescriptorProto) bool {
  41. return proto.GetBoolExtension(field.Options, E_Stdduration, false)
  42. }
  43. func NeedsNilCheck(proto3 bool, field *google_protobuf.FieldDescriptorProto) bool {
  44. nullable := IsNullable(field)
  45. if field.IsMessage() || IsCustomType(field) {
  46. return nullable
  47. }
  48. if proto3 {
  49. return false
  50. }
  51. return nullable || *field.Type == google_protobuf.FieldDescriptorProto_TYPE_BYTES
  52. }
  53. func IsCustomType(field *google_protobuf.FieldDescriptorProto) bool {
  54. typ := GetCustomType(field)
  55. if len(typ) > 0 {
  56. return true
  57. }
  58. return false
  59. }
  60. func IsCastType(field *google_protobuf.FieldDescriptorProto) bool {
  61. typ := GetCastType(field)
  62. if len(typ) > 0 {
  63. return true
  64. }
  65. return false
  66. }
  67. func IsCastKey(field *google_protobuf.FieldDescriptorProto) bool {
  68. typ := GetCastKey(field)
  69. if len(typ) > 0 {
  70. return true
  71. }
  72. return false
  73. }
  74. func IsCastValue(field *google_protobuf.FieldDescriptorProto) bool {
  75. typ := GetCastValue(field)
  76. if len(typ) > 0 {
  77. return true
  78. }
  79. return false
  80. }
  81. func HasEnumDecl(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool {
  82. return proto.GetBoolExtension(enum.Options, E_Enumdecl, proto.GetBoolExtension(file.Options, E_EnumdeclAll, true))
  83. }
  84. func HasTypeDecl(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  85. return proto.GetBoolExtension(message.Options, E_Typedecl, proto.GetBoolExtension(file.Options, E_TypedeclAll, true))
  86. }
  87. func GetCustomType(field *google_protobuf.FieldDescriptorProto) string {
  88. if field == nil {
  89. return ""
  90. }
  91. if field.Options != nil {
  92. v, err := proto.GetExtension(field.Options, E_Customtype)
  93. if err == nil && v.(*string) != nil {
  94. return *(v.(*string))
  95. }
  96. }
  97. return ""
  98. }
  99. func GetCastType(field *google_protobuf.FieldDescriptorProto) string {
  100. if field == nil {
  101. return ""
  102. }
  103. if field.Options != nil {
  104. v, err := proto.GetExtension(field.Options, E_Casttype)
  105. if err == nil && v.(*string) != nil {
  106. return *(v.(*string))
  107. }
  108. }
  109. return ""
  110. }
  111. func GetCastKey(field *google_protobuf.FieldDescriptorProto) string {
  112. if field == nil {
  113. return ""
  114. }
  115. if field.Options != nil {
  116. v, err := proto.GetExtension(field.Options, E_Castkey)
  117. if err == nil && v.(*string) != nil {
  118. return *(v.(*string))
  119. }
  120. }
  121. return ""
  122. }
  123. func GetCastValue(field *google_protobuf.FieldDescriptorProto) string {
  124. if field == nil {
  125. return ""
  126. }
  127. if field.Options != nil {
  128. v, err := proto.GetExtension(field.Options, E_Castvalue)
  129. if err == nil && v.(*string) != nil {
  130. return *(v.(*string))
  131. }
  132. }
  133. return ""
  134. }
  135. func IsCustomName(field *google_protobuf.FieldDescriptorProto) bool {
  136. name := GetCustomName(field)
  137. if len(name) > 0 {
  138. return true
  139. }
  140. return false
  141. }
  142. func IsEnumCustomName(field *google_protobuf.EnumDescriptorProto) bool {
  143. name := GetEnumCustomName(field)
  144. if len(name) > 0 {
  145. return true
  146. }
  147. return false
  148. }
  149. func IsEnumValueCustomName(field *google_protobuf.EnumValueDescriptorProto) bool {
  150. name := GetEnumValueCustomName(field)
  151. if len(name) > 0 {
  152. return true
  153. }
  154. return false
  155. }
  156. func GetCustomName(field *google_protobuf.FieldDescriptorProto) string {
  157. if field == nil {
  158. return ""
  159. }
  160. if field.Options != nil {
  161. v, err := proto.GetExtension(field.Options, E_Customname)
  162. if err == nil && v.(*string) != nil {
  163. return *(v.(*string))
  164. }
  165. }
  166. return ""
  167. }
  168. func GetEnumCustomName(field *google_protobuf.EnumDescriptorProto) string {
  169. if field == nil {
  170. return ""
  171. }
  172. if field.Options != nil {
  173. v, err := proto.GetExtension(field.Options, E_EnumCustomname)
  174. if err == nil && v.(*string) != nil {
  175. return *(v.(*string))
  176. }
  177. }
  178. return ""
  179. }
  180. func GetEnumValueCustomName(field *google_protobuf.EnumValueDescriptorProto) string {
  181. if field == nil {
  182. return ""
  183. }
  184. if field.Options != nil {
  185. v, err := proto.GetExtension(field.Options, E_EnumvalueCustomname)
  186. if err == nil && v.(*string) != nil {
  187. return *(v.(*string))
  188. }
  189. }
  190. return ""
  191. }
  192. func GetJsonTag(field *google_protobuf.FieldDescriptorProto) *string {
  193. if field == nil {
  194. return nil
  195. }
  196. if field.Options != nil {
  197. v, err := proto.GetExtension(field.Options, E_Jsontag)
  198. if err == nil && v.(*string) != nil {
  199. return (v.(*string))
  200. }
  201. }
  202. return nil
  203. }
  204. func GetMoreTags(field *google_protobuf.FieldDescriptorProto) *string {
  205. if field == nil {
  206. return nil
  207. }
  208. if field.Options != nil {
  209. v, err := proto.GetExtension(field.Options, E_Moretags)
  210. if err == nil && v.(*string) != nil {
  211. return (v.(*string))
  212. }
  213. }
  214. return nil
  215. }
  216. type EnableFunc func(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool
  217. func EnabledGoEnumPrefix(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool {
  218. return proto.GetBoolExtension(enum.Options, E_GoprotoEnumPrefix, proto.GetBoolExtension(file.Options, E_GoprotoEnumPrefixAll, true))
  219. }
  220. func EnabledGoStringer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  221. return proto.GetBoolExtension(message.Options, E_GoprotoStringer, proto.GetBoolExtension(file.Options, E_GoprotoStringerAll, true))
  222. }
  223. func HasGoGetters(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  224. return proto.GetBoolExtension(message.Options, E_GoprotoGetters, proto.GetBoolExtension(file.Options, E_GoprotoGettersAll, true))
  225. }
  226. func IsUnion(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  227. return proto.GetBoolExtension(message.Options, E_Onlyone, proto.GetBoolExtension(file.Options, E_OnlyoneAll, false))
  228. }
  229. func HasGoString(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  230. return proto.GetBoolExtension(message.Options, E_Gostring, proto.GetBoolExtension(file.Options, E_GostringAll, false))
  231. }
  232. func HasEqual(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  233. return proto.GetBoolExtension(message.Options, E_Equal, proto.GetBoolExtension(file.Options, E_EqualAll, false))
  234. }
  235. func HasVerboseEqual(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  236. return proto.GetBoolExtension(message.Options, E_VerboseEqual, proto.GetBoolExtension(file.Options, E_VerboseEqualAll, false))
  237. }
  238. func IsStringer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  239. return proto.GetBoolExtension(message.Options, E_Stringer, proto.GetBoolExtension(file.Options, E_StringerAll, false))
  240. }
  241. func IsFace(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  242. return proto.GetBoolExtension(message.Options, E_Face, proto.GetBoolExtension(file.Options, E_FaceAll, false))
  243. }
  244. func HasDescription(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  245. return proto.GetBoolExtension(message.Options, E_Description, proto.GetBoolExtension(file.Options, E_DescriptionAll, false))
  246. }
  247. func HasPopulate(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  248. return proto.GetBoolExtension(message.Options, E_Populate, proto.GetBoolExtension(file.Options, E_PopulateAll, false))
  249. }
  250. func HasTestGen(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  251. return proto.GetBoolExtension(message.Options, E_Testgen, proto.GetBoolExtension(file.Options, E_TestgenAll, false))
  252. }
  253. func HasBenchGen(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  254. return proto.GetBoolExtension(message.Options, E_Benchgen, proto.GetBoolExtension(file.Options, E_BenchgenAll, false))
  255. }
  256. func IsMarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  257. return proto.GetBoolExtension(message.Options, E_Marshaler, proto.GetBoolExtension(file.Options, E_MarshalerAll, false))
  258. }
  259. func IsUnmarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  260. return proto.GetBoolExtension(message.Options, E_Unmarshaler, proto.GetBoolExtension(file.Options, E_UnmarshalerAll, false))
  261. }
  262. func IsStableMarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  263. return proto.GetBoolExtension(message.Options, E_StableMarshaler, proto.GetBoolExtension(file.Options, E_StableMarshalerAll, false))
  264. }
  265. func IsSizer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  266. return proto.GetBoolExtension(message.Options, E_Sizer, proto.GetBoolExtension(file.Options, E_SizerAll, false))
  267. }
  268. func IsProtoSizer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  269. return proto.GetBoolExtension(message.Options, E_Protosizer, proto.GetBoolExtension(file.Options, E_ProtosizerAll, false))
  270. }
  271. func IsGoEnumStringer(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool {
  272. return proto.GetBoolExtension(enum.Options, E_GoprotoEnumStringer, proto.GetBoolExtension(file.Options, E_GoprotoEnumStringerAll, true))
  273. }
  274. func IsEnumStringer(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool {
  275. return proto.GetBoolExtension(enum.Options, E_EnumStringer, proto.GetBoolExtension(file.Options, E_EnumStringerAll, false))
  276. }
  277. func IsUnsafeMarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  278. return proto.GetBoolExtension(message.Options, E_UnsafeMarshaler, proto.GetBoolExtension(file.Options, E_UnsafeMarshalerAll, false))
  279. }
  280. func IsUnsafeUnmarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  281. return proto.GetBoolExtension(message.Options, E_UnsafeUnmarshaler, proto.GetBoolExtension(file.Options, E_UnsafeUnmarshalerAll, false))
  282. }
  283. func HasExtensionsMap(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  284. return proto.GetBoolExtension(message.Options, E_GoprotoExtensionsMap, proto.GetBoolExtension(file.Options, E_GoprotoExtensionsMapAll, true))
  285. }
  286. func HasUnrecognized(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  287. return proto.GetBoolExtension(message.Options, E_GoprotoUnrecognized, proto.GetBoolExtension(file.Options, E_GoprotoUnrecognizedAll, true))
  288. }
  289. func IsProto3(file *google_protobuf.FileDescriptorProto) bool {
  290. return file.GetSyntax() == "proto3"
  291. }
  292. func ImportsGoGoProto(file *google_protobuf.FileDescriptorProto) bool {
  293. return proto.GetBoolExtension(file.Options, E_GogoprotoImport, true)
  294. }
  295. func HasCompare(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  296. return proto.GetBoolExtension(message.Options, E_Compare, proto.GetBoolExtension(file.Options, E_CompareAll, false))
  297. }
  298. func RegistersGolangProto(file *google_protobuf.FileDescriptorProto) bool {
  299. return proto.GetBoolExtension(file.Options, E_GoprotoRegistration, false)
  300. }
  301. func HasMessageName(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool {
  302. return proto.GetBoolExtension(message.Options, E_Messagename, proto.GetBoolExtension(file.Options, E_MessagenameAll, false))
  303. }