pointer_unsafe.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. // Copyright 2018 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build !purego,!appengine
  5. package impl
  6. import (
  7. "reflect"
  8. "unsafe"
  9. )
  10. // offset represents the offset to a struct field, accessible from a pointer.
  11. // The offset is the byte offset to the field from the start of the struct.
  12. type offset uintptr
  13. // offsetOf returns a field offset for the struct field.
  14. func offsetOf(f reflect.StructField) offset {
  15. return offset(f.Offset)
  16. }
  17. // IsValid reports whether the offset is valid.
  18. func (f offset) IsValid() bool { return f != invalidOffset }
  19. // invalidOffset is an invalid field offset.
  20. var invalidOffset = ^offset(0)
  21. // zeroOffset is a noop when calling pointer.Apply.
  22. var zeroOffset = offset(0)
  23. // pointer is a pointer to a message struct or field.
  24. type pointer struct{ p unsafe.Pointer }
  25. // pointerOfValue returns v as a pointer.
  26. func pointerOfValue(v reflect.Value) pointer {
  27. return pointer{p: unsafe.Pointer(v.Pointer())}
  28. }
  29. // pointerOfIface returns the pointer portion of an interface.
  30. func pointerOfIface(v interface{}) pointer {
  31. type ifaceHeader struct {
  32. Type unsafe.Pointer
  33. Data unsafe.Pointer
  34. }
  35. return pointer{p: (*ifaceHeader)(unsafe.Pointer(&v)).Data}
  36. }
  37. // IsNil reports whether the pointer is nil.
  38. func (p pointer) IsNil() bool {
  39. return p.p == nil
  40. }
  41. // Apply adds an offset to the pointer to derive a new pointer
  42. // to a specified field. The pointer must be valid and pointing at a struct.
  43. func (p pointer) Apply(f offset) pointer {
  44. if p.IsNil() {
  45. panic("invalid nil pointer")
  46. }
  47. return pointer{p: unsafe.Pointer(uintptr(p.p) + uintptr(f))}
  48. }
  49. // AsValueOf treats p as a pointer to an object of type t and returns the value.
  50. // It is equivalent to reflect.ValueOf(p.AsIfaceOf(t))
  51. func (p pointer) AsValueOf(t reflect.Type) reflect.Value {
  52. return reflect.NewAt(t, p.p)
  53. }
  54. // AsIfaceOf treats p as a pointer to an object of type t and returns the value.
  55. // It is equivalent to p.AsValueOf(t).Interface()
  56. func (p pointer) AsIfaceOf(t reflect.Type) interface{} {
  57. // TODO: Use tricky unsafe magic to directly create ifaceHeader.
  58. return p.AsValueOf(t).Interface()
  59. }
  60. func (p pointer) Bool() *bool { return (*bool)(p.p) }
  61. func (p pointer) BoolPtr() **bool { return (**bool)(p.p) }
  62. func (p pointer) BoolSlice() *[]bool { return (*[]bool)(p.p) }
  63. func (p pointer) Int32() *int32 { return (*int32)(p.p) }
  64. func (p pointer) Int32Ptr() **int32 { return (**int32)(p.p) }
  65. func (p pointer) Int32Slice() *[]int32 { return (*[]int32)(p.p) }
  66. func (p pointer) Int64() *int64 { return (*int64)(p.p) }
  67. func (p pointer) Int64Ptr() **int64 { return (**int64)(p.p) }
  68. func (p pointer) Int64Slice() *[]int64 { return (*[]int64)(p.p) }
  69. func (p pointer) Uint32() *uint32 { return (*uint32)(p.p) }
  70. func (p pointer) Uint32Ptr() **uint32 { return (**uint32)(p.p) }
  71. func (p pointer) Uint32Slice() *[]uint32 { return (*[]uint32)(p.p) }
  72. func (p pointer) Uint64() *uint64 { return (*uint64)(p.p) }
  73. func (p pointer) Uint64Ptr() **uint64 { return (**uint64)(p.p) }
  74. func (p pointer) Uint64Slice() *[]uint64 { return (*[]uint64)(p.p) }
  75. func (p pointer) Float32() *float32 { return (*float32)(p.p) }
  76. func (p pointer) Float32Ptr() **float32 { return (**float32)(p.p) }
  77. func (p pointer) Float32Slice() *[]float32 { return (*[]float32)(p.p) }
  78. func (p pointer) Float64() *float64 { return (*float64)(p.p) }
  79. func (p pointer) Float64Ptr() **float64 { return (**float64)(p.p) }
  80. func (p pointer) Float64Slice() *[]float64 { return (*[]float64)(p.p) }
  81. func (p pointer) String() *string { return (*string)(p.p) }
  82. func (p pointer) StringPtr() **string { return (**string)(p.p) }
  83. func (p pointer) StringSlice() *[]string { return (*[]string)(p.p) }
  84. func (p pointer) Bytes() *[]byte { return (*[]byte)(p.p) }
  85. func (p pointer) BytesSlice() *[][]byte { return (*[][]byte)(p.p) }
  86. func (p pointer) Extensions() *map[int32]ExtensionField { return (*map[int32]ExtensionField)(p.p) }
  87. func (p pointer) Elem() pointer {
  88. return pointer{p: *(*unsafe.Pointer)(p.p)}
  89. }
  90. // PointerSlice loads []*T from p as a []pointer.
  91. // The value returned is aliased with the original slice.
  92. // This behavior differs from the implementation in pointer_reflect.go.
  93. func (p pointer) PointerSlice() []pointer {
  94. // Super-tricky - p should point to a []*T where T is a
  95. // message type. We load it as []pointer.
  96. return *(*[]pointer)(p.p)
  97. }