foreach.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
  30. func ForEachFile(files []*descriptor.FileDescriptorProto, f func(file *descriptor.FileDescriptorProto)) {
  31. for _, file := range files {
  32. f(file)
  33. }
  34. }
  35. func OnlyProto2(files []*descriptor.FileDescriptorProto) []*descriptor.FileDescriptorProto {
  36. outs := make([]*descriptor.FileDescriptorProto, 0, len(files))
  37. for i, file := range files {
  38. if file.GetSyntax() == "proto3" {
  39. continue
  40. }
  41. outs = append(outs, files[i])
  42. }
  43. return outs
  44. }
  45. func OnlyProto3(files []*descriptor.FileDescriptorProto) []*descriptor.FileDescriptorProto {
  46. outs := make([]*descriptor.FileDescriptorProto, 0, len(files))
  47. for i, file := range files {
  48. if file.GetSyntax() != "proto3" {
  49. continue
  50. }
  51. outs = append(outs, files[i])
  52. }
  53. return outs
  54. }
  55. func ForEachMessageInFiles(files []*descriptor.FileDescriptorProto, f func(msg *descriptor.DescriptorProto)) {
  56. for _, file := range files {
  57. ForEachMessage(file.MessageType, f)
  58. }
  59. }
  60. func ForEachMessage(msgs []*descriptor.DescriptorProto, f func(msg *descriptor.DescriptorProto)) {
  61. for _, msg := range msgs {
  62. f(msg)
  63. ForEachMessage(msg.NestedType, f)
  64. }
  65. }
  66. func ForEachFieldInFilesExcludingExtensions(files []*descriptor.FileDescriptorProto, f func(field *descriptor.FieldDescriptorProto)) {
  67. for _, file := range files {
  68. ForEachFieldExcludingExtensions(file.MessageType, f)
  69. }
  70. }
  71. func ForEachFieldInFiles(files []*descriptor.FileDescriptorProto, f func(field *descriptor.FieldDescriptorProto)) {
  72. for _, file := range files {
  73. for _, ext := range file.Extension {
  74. f(ext)
  75. }
  76. ForEachField(file.MessageType, f)
  77. }
  78. }
  79. func ForEachFieldExcludingExtensions(msgs []*descriptor.DescriptorProto, f func(field *descriptor.FieldDescriptorProto)) {
  80. for _, msg := range msgs {
  81. for _, field := range msg.Field {
  82. f(field)
  83. }
  84. ForEachField(msg.NestedType, f)
  85. }
  86. }
  87. func ForEachField(msgs []*descriptor.DescriptorProto, f func(field *descriptor.FieldDescriptorProto)) {
  88. for _, msg := range msgs {
  89. for _, field := range msg.Field {
  90. f(field)
  91. }
  92. for _, ext := range msg.Extension {
  93. f(ext)
  94. }
  95. ForEachField(msg.NestedType, f)
  96. }
  97. }
  98. func ForEachEnumInFiles(files []*descriptor.FileDescriptorProto, f func(enum *descriptor.EnumDescriptorProto)) {
  99. for _, file := range files {
  100. for _, enum := range file.EnumType {
  101. f(enum)
  102. }
  103. }
  104. }
  105. func ForEachEnum(msgs []*descriptor.DescriptorProto, f func(field *descriptor.EnumDescriptorProto)) {
  106. for _, msg := range msgs {
  107. for _, field := range msg.EnumType {
  108. f(field)
  109. }
  110. ForEachEnum(msg.NestedType, f)
  111. }
  112. }