descriptor.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. // Go support for Protocol Buffers - Google's data interchange format
  2. //
  3. // Copyright 2016 The Go Authors. All rights reserved.
  4. // https://github.com/golang/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. // * Neither the name of Google Inc. nor the names of its
  17. // contributors may be used to endorse or promote products derived from
  18. // this software without specific prior written permission.
  19. //
  20. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. // Package descriptor provides functions for obtaining protocol buffer
  32. // descriptors for generated Go types.
  33. //
  34. // These functions cannot go in package proto because they depend on the
  35. // generated protobuf descriptor messages, which themselves depend on proto.
  36. package descriptor
  37. import (
  38. "bytes"
  39. "compress/gzip"
  40. "fmt"
  41. "io/ioutil"
  42. "github.com/gogo/protobuf/proto"
  43. )
  44. // extractFile extracts a FileDescriptorProto from a gzip'd buffer.
  45. func extractFile(gz []byte) (*FileDescriptorProto, error) {
  46. r, err := gzip.NewReader(bytes.NewReader(gz))
  47. if err != nil {
  48. return nil, fmt.Errorf("failed to open gzip reader: %v", err)
  49. }
  50. defer r.Close()
  51. b, err := ioutil.ReadAll(r)
  52. if err != nil {
  53. return nil, fmt.Errorf("failed to uncompress descriptor: %v", err)
  54. }
  55. fd := new(FileDescriptorProto)
  56. if err := proto.Unmarshal(b, fd); err != nil {
  57. return nil, fmt.Errorf("malformed FileDescriptorProto: %v", err)
  58. }
  59. return fd, nil
  60. }
  61. // Message is a proto.Message with a method to return its descriptor.
  62. //
  63. // Message types generated by the protocol compiler always satisfy
  64. // the Message interface.
  65. type Message interface {
  66. proto.Message
  67. Descriptor() ([]byte, []int)
  68. }
  69. // ForMessage returns a FileDescriptorProto and a DescriptorProto from within it
  70. // describing the given message.
  71. func ForMessage(msg Message) (fd *FileDescriptorProto, md *DescriptorProto) {
  72. gz, path := msg.Descriptor()
  73. fd, err := extractFile(gz)
  74. if err != nil {
  75. panic(fmt.Sprintf("invalid FileDescriptorProto for %T: %v", msg, err))
  76. }
  77. md = fd.MessageType[path[0]]
  78. for _, i := range path[1:] {
  79. md = md.NestedType[i]
  80. }
  81. return fd, md
  82. }
  83. // Is this field a scalar numeric type?
  84. func (field *FieldDescriptorProto) IsScalar() bool {
  85. if field.Type == nil {
  86. return false
  87. }
  88. switch *field.Type {
  89. case FieldDescriptorProto_TYPE_DOUBLE,
  90. FieldDescriptorProto_TYPE_FLOAT,
  91. FieldDescriptorProto_TYPE_INT64,
  92. FieldDescriptorProto_TYPE_UINT64,
  93. FieldDescriptorProto_TYPE_INT32,
  94. FieldDescriptorProto_TYPE_FIXED64,
  95. FieldDescriptorProto_TYPE_FIXED32,
  96. FieldDescriptorProto_TYPE_BOOL,
  97. FieldDescriptorProto_TYPE_UINT32,
  98. FieldDescriptorProto_TYPE_ENUM,
  99. FieldDescriptorProto_TYPE_SFIXED32,
  100. FieldDescriptorProto_TYPE_SFIXED64,
  101. FieldDescriptorProto_TYPE_SINT32,
  102. FieldDescriptorProto_TYPE_SINT64:
  103. return true
  104. default:
  105. return false
  106. }
  107. }