clone.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. // Go support for Protocol Buffers - Google's data interchange format
  2. //
  3. // Copyright 2011 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. // Protocol buffer deep copy and merge.
  32. // TODO: RawMessage.
  33. package proto
  34. import (
  35. "log"
  36. "reflect"
  37. "strings"
  38. )
  39. // Clone returns a deep copy of a protocol buffer.
  40. func Clone(pb Message) Message {
  41. in := reflect.ValueOf(pb)
  42. if in.IsNil() {
  43. return pb
  44. }
  45. out := reflect.New(in.Type().Elem())
  46. // out is empty so a merge is a deep copy.
  47. mergeStruct(out.Elem(), in.Elem())
  48. return out.Interface().(Message)
  49. }
  50. // Merge merges src into dst.
  51. // Required and optional fields that are set in src will be set to that value in dst.
  52. // Elements of repeated fields will be appended.
  53. // Merge panics if src and dst are not the same type, or if dst is nil.
  54. func Merge(dst, src Message) {
  55. in := reflect.ValueOf(src)
  56. out := reflect.ValueOf(dst)
  57. if out.IsNil() {
  58. panic("proto: nil destination")
  59. }
  60. if in.Type() != out.Type() {
  61. // Explicit test prior to mergeStruct so that mistyped nils will fail
  62. panic("proto: type mismatch")
  63. }
  64. if in.IsNil() {
  65. // Merging nil into non-nil is a quiet no-op
  66. return
  67. }
  68. mergeStruct(out.Elem(), in.Elem())
  69. }
  70. func mergeStruct(out, in reflect.Value) {
  71. sprop := GetProperties(in.Type())
  72. for i := 0; i < in.NumField(); i++ {
  73. f := in.Type().Field(i)
  74. if strings.HasPrefix(f.Name, "XXX_") {
  75. continue
  76. }
  77. mergeAny(out.Field(i), in.Field(i), false, sprop.Prop[i])
  78. }
  79. if emIn, ok := in.Addr().Interface().(extensionsMap); ok {
  80. emOut := out.Addr().Interface().(extensionsMap)
  81. mergeExtension(emOut.ExtensionMap(), emIn.ExtensionMap())
  82. } else if emIn, ok := in.Addr().Interface().(extensionsBytes); ok {
  83. emOut := out.Addr().Interface().(extensionsBytes)
  84. bIn := emIn.GetExtensions()
  85. bOut := emOut.GetExtensions()
  86. *bOut = append(*bOut, *bIn...)
  87. }
  88. uf := in.FieldByName("XXX_unrecognized")
  89. if !uf.IsValid() {
  90. return
  91. }
  92. uin := uf.Bytes()
  93. if len(uin) > 0 {
  94. out.FieldByName("XXX_unrecognized").SetBytes(append([]byte(nil), uin...))
  95. }
  96. }
  97. // mergeAny performs a merge between two values of the same type.
  98. // viaPtr indicates whether the values were indirected through a pointer (implying proto2).
  99. // prop is set if this is a struct field (it may be nil).
  100. func mergeAny(out, in reflect.Value, viaPtr bool, prop *Properties) {
  101. if in.Type() == protoMessageType {
  102. if !in.IsNil() {
  103. if out.IsNil() {
  104. out.Set(reflect.ValueOf(Clone(in.Interface().(Message))))
  105. } else {
  106. Merge(out.Interface().(Message), in.Interface().(Message))
  107. }
  108. }
  109. return
  110. }
  111. switch in.Kind() {
  112. case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64,
  113. reflect.String, reflect.Uint32, reflect.Uint64:
  114. if !viaPtr && isProto3Zero(in) {
  115. return
  116. }
  117. out.Set(in)
  118. case reflect.Interface:
  119. // Probably a oneof field; copy non-nil values.
  120. if in.IsNil() {
  121. return
  122. }
  123. // Allocate destination if it is not set, or set to a different type.
  124. // Otherwise we will merge as normal.
  125. if out.IsNil() || out.Elem().Type() != in.Elem().Type() {
  126. out.Set(reflect.New(in.Elem().Elem().Type())) // interface -> *T -> T -> new(T)
  127. }
  128. mergeAny(out.Elem(), in.Elem(), false, nil)
  129. case reflect.Map:
  130. if in.Len() == 0 {
  131. return
  132. }
  133. if out.IsNil() {
  134. out.Set(reflect.MakeMap(in.Type()))
  135. }
  136. // For maps with value types of *T or []byte we need to deep copy each value.
  137. elemKind := in.Type().Elem().Kind()
  138. for _, key := range in.MapKeys() {
  139. var val reflect.Value
  140. switch elemKind {
  141. case reflect.Ptr:
  142. val = reflect.New(in.Type().Elem().Elem())
  143. mergeAny(val, in.MapIndex(key), false, nil)
  144. case reflect.Slice:
  145. val = in.MapIndex(key)
  146. val = reflect.ValueOf(append([]byte{}, val.Bytes()...))
  147. default:
  148. val = in.MapIndex(key)
  149. }
  150. out.SetMapIndex(key, val)
  151. }
  152. case reflect.Ptr:
  153. if in.IsNil() {
  154. return
  155. }
  156. if out.IsNil() {
  157. out.Set(reflect.New(in.Elem().Type()))
  158. }
  159. mergeAny(out.Elem(), in.Elem(), true, nil)
  160. case reflect.Slice:
  161. if in.IsNil() {
  162. return
  163. }
  164. if in.Type().Elem().Kind() == reflect.Uint8 {
  165. // []byte is a scalar bytes field, not a repeated field.
  166. // Edge case: if this is in a proto3 message, a zero length
  167. // bytes field is considered the zero value, and should not
  168. // be merged.
  169. if prop != nil && prop.proto3 && in.Len() == 0 {
  170. return
  171. }
  172. // Make a deep copy.
  173. // Append to []byte{} instead of []byte(nil) so that we never end up
  174. // with a nil result.
  175. out.SetBytes(append([]byte{}, in.Bytes()...))
  176. return
  177. }
  178. n := in.Len()
  179. if out.IsNil() {
  180. out.Set(reflect.MakeSlice(in.Type(), 0, n))
  181. }
  182. switch in.Type().Elem().Kind() {
  183. case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64,
  184. reflect.String, reflect.Uint32, reflect.Uint64:
  185. out.Set(reflect.AppendSlice(out, in))
  186. default:
  187. for i := 0; i < n; i++ {
  188. x := reflect.Indirect(reflect.New(in.Type().Elem()))
  189. mergeAny(x, in.Index(i), false, nil)
  190. out.Set(reflect.Append(out, x))
  191. }
  192. }
  193. case reflect.Struct:
  194. mergeStruct(out, in)
  195. default:
  196. // unknown type, so not a protocol buffer
  197. log.Printf("proto: don't know how to copy %v", in)
  198. }
  199. }
  200. func mergeExtension(out, in map[int32]Extension) {
  201. for extNum, eIn := range in {
  202. eOut := Extension{desc: eIn.desc}
  203. if eIn.value != nil {
  204. v := reflect.New(reflect.TypeOf(eIn.value)).Elem()
  205. mergeAny(v, reflect.ValueOf(eIn.value), false, nil)
  206. eOut.value = v.Interface()
  207. }
  208. if eIn.enc != nil {
  209. eOut.enc = make([]byte, len(eIn.enc))
  210. copy(eOut.enc, eIn.enc)
  211. }
  212. out[extNum] = eOut
  213. }
  214. }