github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/libraries/golang/protobuf/proto/pointer_unsafe.go (about) 1 // Go support for Protocol Buffers - Google's data interchange format 2 // 3 // Copyright 2012 The Go Authors. All rights reserved. 4 // https://yougam/libraries/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 32 // +build !appengine,!js 33 34 // This file contains the implementation of the proto field accesses using package unsafe. 35 36 package proto 37 38 import ( 39 "reflect" 40 "unsafe" 41 ) 42 43 // NOTE: These type_Foo functions would more idiomatically be methods, 44 // but Go does not allow methods on pointer types, and we must preserve 45 // some pointer type for the garbage collector. We use these 46 // funcs with clunky names as our poor approximation to methods. 47 // 48 // An alternative would be 49 // type structPointer struct { p unsafe.Pointer } 50 // but that does not registerize as well. 51 52 // A structPointer is a pointer to a struct. 53 type structPointer unsafe.Pointer 54 55 // toStructPointer returns a structPointer equivalent to the given reflect value. 56 func toStructPointer(v reflect.Value) structPointer { 57 return structPointer(unsafe.Pointer(v.Pointer())) 58 } 59 60 // IsNil reports whether p is nil. 61 func structPointer_IsNil(p structPointer) bool { 62 return p == nil 63 } 64 65 // Interface returns the struct pointer, assumed to have element type t, 66 // as an interface value. 67 func structPointer_Interface(p structPointer, t reflect.Type) interface{} { 68 return reflect.NewAt(t, unsafe.Pointer(p)).Interface() 69 } 70 71 // A field identifies a field in a struct, accessible from a structPointer. 72 // In this implementation, a field is identified by its byte offset from the start of the struct. 73 type field uintptr 74 75 // toField returns a field equivalent to the given reflect field. 76 func toField(f *reflect.StructField) field { 77 return field(f.Offset) 78 } 79 80 // invalidField is an invalid field identifier. 81 const invalidField = ^field(0) 82 83 // IsValid reports whether the field identifier is valid. 84 func (f field) IsValid() bool { 85 return f != ^field(0) 86 } 87 88 // Bytes returns the address of a []byte field in the struct. 89 func structPointer_Bytes(p structPointer, f field) *[]byte { 90 return (*[]byte)(unsafe.Pointer(uintptr(p) + uintptr(f))) 91 } 92 93 // BytesSlice returns the address of a [][]byte field in the struct. 94 func structPointer_BytesSlice(p structPointer, f field) *[][]byte { 95 return (*[][]byte)(unsafe.Pointer(uintptr(p) + uintptr(f))) 96 } 97 98 // Bool returns the address of a *bool field in the struct. 99 func structPointer_Bool(p structPointer, f field) **bool { 100 return (**bool)(unsafe.Pointer(uintptr(p) + uintptr(f))) 101 } 102 103 // BoolVal returns the address of a bool field in the struct. 104 func structPointer_BoolVal(p structPointer, f field) *bool { 105 return (*bool)(unsafe.Pointer(uintptr(p) + uintptr(f))) 106 } 107 108 // BoolSlice returns the address of a []bool field in the struct. 109 func structPointer_BoolSlice(p structPointer, f field) *[]bool { 110 return (*[]bool)(unsafe.Pointer(uintptr(p) + uintptr(f))) 111 } 112 113 // String returns the address of a *string field in the struct. 114 func structPointer_String(p structPointer, f field) **string { 115 return (**string)(unsafe.Pointer(uintptr(p) + uintptr(f))) 116 } 117 118 // StringVal returns the address of a string field in the struct. 119 func structPointer_StringVal(p structPointer, f field) *string { 120 return (*string)(unsafe.Pointer(uintptr(p) + uintptr(f))) 121 } 122 123 // StringSlice returns the address of a []string field in the struct. 124 func structPointer_StringSlice(p structPointer, f field) *[]string { 125 return (*[]string)(unsafe.Pointer(uintptr(p) + uintptr(f))) 126 } 127 128 // ExtMap returns the address of an extension map field in the struct. 129 func structPointer_ExtMap(p structPointer, f field) *map[int32]Extension { 130 return (*map[int32]Extension)(unsafe.Pointer(uintptr(p) + uintptr(f))) 131 } 132 133 // NewAt returns the reflect.Value for a pointer to a field in the struct. 134 func structPointer_NewAt(p structPointer, f field, typ reflect.Type) reflect.Value { 135 return reflect.NewAt(typ, unsafe.Pointer(uintptr(p)+uintptr(f))) 136 } 137 138 // SetStructPointer writes a *struct field in the struct. 139 func structPointer_SetStructPointer(p structPointer, f field, q structPointer) { 140 *(*structPointer)(unsafe.Pointer(uintptr(p) + uintptr(f))) = q 141 } 142 143 // GetStructPointer reads a *struct field in the struct. 144 func structPointer_GetStructPointer(p structPointer, f field) structPointer { 145 return *(*structPointer)(unsafe.Pointer(uintptr(p) + uintptr(f))) 146 } 147 148 // StructPointerSlice the address of a []*struct field in the struct. 149 func structPointer_StructPointerSlice(p structPointer, f field) *structPointerSlice { 150 return (*structPointerSlice)(unsafe.Pointer(uintptr(p) + uintptr(f))) 151 } 152 153 // A structPointerSlice represents a slice of pointers to structs (themselves submessages or groups). 154 type structPointerSlice []structPointer 155 156 func (v *structPointerSlice) Len() int { return len(*v) } 157 func (v *structPointerSlice) Index(i int) structPointer { return (*v)[i] } 158 func (v *structPointerSlice) Append(p structPointer) { *v = append(*v, p) } 159 160 // A word32 is the address of a "pointer to 32-bit value" field. 161 type word32 **uint32 162 163 // IsNil reports whether *v is nil. 164 func word32_IsNil(p word32) bool { 165 return *p == nil 166 } 167 168 // Set sets *v to point at a newly allocated word set to x. 169 func word32_Set(p word32, o *Buffer, x uint32) { 170 if len(o.uint32s) == 0 { 171 o.uint32s = make([]uint32, uint32PoolSize) 172 } 173 o.uint32s[0] = x 174 *p = &o.uint32s[0] 175 o.uint32s = o.uint32s[1:] 176 } 177 178 // Get gets the value pointed at by *v. 179 func word32_Get(p word32) uint32 { 180 return **p 181 } 182 183 // Word32 returns the address of a *int32, *uint32, *float32, or *enum field in the struct. 184 func structPointer_Word32(p structPointer, f field) word32 { 185 return word32((**uint32)(unsafe.Pointer(uintptr(p) + uintptr(f)))) 186 } 187 188 // A word32Val is the address of a 32-bit value field. 189 type word32Val *uint32 190 191 // Set sets *p to x. 192 func word32Val_Set(p word32Val, x uint32) { 193 *p = x 194 } 195 196 // Get gets the value pointed at by p. 197 func word32Val_Get(p word32Val) uint32 { 198 return *p 199 } 200 201 // Word32Val returns the address of a *int32, *uint32, *float32, or *enum field in the struct. 202 func structPointer_Word32Val(p structPointer, f field) word32Val { 203 return word32Val((*uint32)(unsafe.Pointer(uintptr(p) + uintptr(f)))) 204 } 205 206 // A word32Slice is a slice of 32-bit values. 207 type word32Slice []uint32 208 209 func (v *word32Slice) Append(x uint32) { *v = append(*v, x) } 210 func (v *word32Slice) Len() int { return len(*v) } 211 func (v *word32Slice) Index(i int) uint32 { return (*v)[i] } 212 213 // Word32Slice returns the address of a []int32, []uint32, []float32, or []enum field in the struct. 214 func structPointer_Word32Slice(p structPointer, f field) *word32Slice { 215 return (*word32Slice)(unsafe.Pointer(uintptr(p) + uintptr(f))) 216 } 217 218 // word64 is like word32 but for 64-bit values. 219 type word64 **uint64 220 221 func word64_Set(p word64, o *Buffer, x uint64) { 222 if len(o.uint64s) == 0 { 223 o.uint64s = make([]uint64, uint64PoolSize) 224 } 225 o.uint64s[0] = x 226 *p = &o.uint64s[0] 227 o.uint64s = o.uint64s[1:] 228 } 229 230 func word64_IsNil(p word64) bool { 231 return *p == nil 232 } 233 234 func word64_Get(p word64) uint64 { 235 return **p 236 } 237 238 func structPointer_Word64(p structPointer, f field) word64 { 239 return word64((**uint64)(unsafe.Pointer(uintptr(p) + uintptr(f)))) 240 } 241 242 // word64Val is like word32Val but for 64-bit values. 243 type word64Val *uint64 244 245 func word64Val_Set(p word64Val, o *Buffer, x uint64) { 246 *p = x 247 } 248 249 func word64Val_Get(p word64Val) uint64 { 250 return *p 251 } 252 253 func structPointer_Word64Val(p structPointer, f field) word64Val { 254 return word64Val((*uint64)(unsafe.Pointer(uintptr(p) + uintptr(f)))) 255 } 256 257 // word64Slice is like word32Slice but for 64-bit values. 258 type word64Slice []uint64 259 260 func (v *word64Slice) Append(x uint64) { *v = append(*v, x) } 261 func (v *word64Slice) Len() int { return len(*v) } 262 func (v *word64Slice) Index(i int) uint64 { return (*v)[i] } 263 264 func structPointer_Word64Slice(p structPointer, f field) *word64Slice { 265 return (*word64Slice)(unsafe.Pointer(uintptr(p) + uintptr(f))) 266 }