-
Notifications
You must be signed in to change notification settings - Fork 0
/
maplock.go
157 lines (139 loc) · 3.15 KB
/
maplock.go
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package syncmap
import (
"math/rand"
"sync"
"time"
)
// DefaultDeepNumber default
// seed default
const DefaultDeepNumber int = 4096
const seed int = 131
// mapIter include map itself and sync RWMutex
type mapIter struct {
content map[interface{}]interface{}
r *sync.RWMutex
}
// SyncMap include map of length and mapIter of slice
type SyncMap struct {
deep int
siter []*mapIter
}
// Element include key and value
type Element struct {
key interface{}
value interface{}
}
// New object MaoWithLock and initilizte default length of map and sync map
func New() *SyncMap {
return newSyncMap(DefaultDeepNumber)
}
// NewSyncMap object MaoWithLock and initilizte deep parameter length of map and sync map
func NewSyncMap(deep int) *SyncMap {
return newSyncMap(deep)
}
// newSyncMap
func newSyncMap(deep int) *SyncMap {
sm := &SyncMap{}
sm.deep = deep
sm.siter = make([]*mapIter, sm.deep)
for k := range sm.siter {
sm.siter[k] = &mapIter{}
sm.siter[k].content = make(map[interface{}]interface{})
sm.siter[k].r = new(sync.RWMutex)
}
return sm
}
// Set key-value into map
// int style use remainder algorithm
// string string use rand algorithm
func (sm *SyncMap) Set(key interface{}, value interface{}) {
var index int
switch key.(type) {
case int:
index = sm.RemainAddress(key.(int)) & sm.deep
case string:
index = sm.HashAddress(key.(string))
}
sm.siter[index].r.Lock()
sm.siter[index].content[key] = value
sm.siter[index].r.Unlock()
}
// Get value from key
func (sm *SyncMap) Get(key interface{}) (value interface{}, ok bool) {
var index int
switch key.(type) {
case int:
index = sm.RemainAddress(key.(int)) & sm.deep
case string:
index = sm.HashAddress(key.(string))
}
sm.siter[index].r.RLock()
value, ok = sm.siter[index].content[key]
sm.siter[index].r.RUnlock()
return
}
// RangeItems range all items
func (sm *SyncMap) RangeItems() <-chan Element {
ch := make(chan Element)
go func() {
for _, siter := range sm.siter {
siter.r.RLock()
for k, v := range siter.content {
ch <- Element{key: k, value: v}
}
siter.r.RUnlock()
}
close(ch)
}()
return ch
}
// Delete one iter
func (sm *SyncMap) Delete(key interface{}) {
var index int
switch key.(type) {
case int:
index = sm.RemainAddress(key.(int)) & sm.deep
case string:
index = sm.HashAddress(key.(string))
}
sm.siter[index].r.Lock()
delete(sm.siter[index].content, key)
sm.siter[index].r.Unlock()
}
// Size map
func (sm *SyncMap) Size() int {
sumDeep := 0
for _, siter := range sm.siter {
siter.r.RLock()
sumDeep += len(siter.content)
siter.r.RUnlock()
}
return sumDeep
}
// RemainAddress location
func (sm *SyncMap) RemainAddress(l int) int {
return remainder(sm.deep, l)
}
func remainder(numberator int, denominator int) int {
return denominator & (numberator - 1)
}
// strIntHash hash to int
func strIntHash(key string) int {
var h int
for _, c := range key {
h = h*seed + int(c)
}
return h
}
// HashAddress find a location with the given key
func (sm *SyncMap) HashAddress(key string) int {
var h int
for _, c := range key {
h = h*seed + int(c)
}
return h & sm.deep
}
// init function
func init() {
rand.Seed(time.Now().UnixNano())
}