zhangmeng
2023-05-16 9731130d8be7adc56010f0744ba4a6358d311110
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package nsqcli
 
// #include <stdlib.h>
import "C"
import (
    "sync"
    "unsafe"
)
 
var (
    mutex sync.RWMutex
    store = map[unsafe.Pointer]interface{}{}
)
 
func Save(v interface{}) unsafe.Pointer {
    if v == nil {
        return nil
    }
 
    // Generate real fake C pointer.
    // This pointer will not store any data, but will bi used for indexing purposes.
    // Since Go doest allow to cast dangling pointer to unsafe.Pointer, we do rally allocate one byte.
    // Why we need indexing, because Go doest allow C code to store pointers to Go data.
    var ptr unsafe.Pointer = C.malloc(C.size_t(1))
    if ptr == nil {
        panic("can't allocate 'cgo-pointer hack index pointer': ptr == nil")
    }
 
    mutex.Lock()
    store[ptr] = v
    mutex.Unlock()
 
    return ptr
}
 
func Restore(ptr unsafe.Pointer) (v interface{}) {
    if ptr == nil {
        return nil
    }
 
    mutex.RLock()
    v = store[ptr]
    mutex.RUnlock()
    return
}
 
func Unref(ptr unsafe.Pointer) {
    if ptr == nil {
        return
    }
 
    mutex.Lock()
    delete(store, ptr)
    mutex.Unlock()
 
    C.free(ptr)
}