并发安全容器隐藏内部成员对象

This commit is contained in:
John
2018-01-16 15:38:53 +08:00
parent 32e4c4d1cb
commit f114e5ffc0
19 changed files with 501 additions and 499 deletions

View File

@ -12,8 +12,8 @@ import (
)
type StringStringMap struct {
sync.RWMutex
m map[string]string
mu sync.RWMutex
m map[string]string
}
func NewStringStringMap() *StringStringMap {
@ -25,114 +25,114 @@ func NewStringStringMap() *StringStringMap {
// 哈希表克隆
func (this *StringStringMap) Clone() *map[string]string {
m := make(map[string]string)
this.RLock()
this.mu.RLock()
for k, v := range this.m {
m[k] = v
}
this.RUnlock()
this.mu.RUnlock()
return &m
}
// 设置键值对
func (this *StringStringMap) Set(key string, val string) {
this.Lock()
this.mu.Lock()
this.m[key] = val
this.Unlock()
this.mu.Unlock()
}
// 批量设置键值对
func (this *StringStringMap) BatchSet(m map[string]string) {
this.Lock()
this.mu.Lock()
for k, v := range m {
this.m[k] = v
}
this.Unlock()
this.mu.Unlock()
}
// 获取键值
func (this *StringStringMap) Get(key string) string {
this.RLock()
this.mu.RLock()
val, _ := this.m[key]
this.RUnlock()
this.mu.RUnlock()
return val
}
// 删除键值对
func (this *StringStringMap) Remove(key string) {
this.Lock()
this.mu.Lock()
delete(this.m, key)
this.Unlock()
this.mu.Unlock()
}
// 批量删除键值对
func (this *StringStringMap) BatchRemove(keys []string) {
this.Lock()
this.mu.Lock()
for _, key := range keys {
delete(this.m, key)
}
this.Unlock()
this.mu.Unlock()
}
// 返回对应的键值,并删除该键值
func (this *StringStringMap) GetAndRemove(key string) string {
this.Lock()
this.mu.Lock()
val, exists := this.m[key]
if exists {
delete(this.m, key)
}
this.Unlock()
this.mu.Unlock()
return val
}
// 返回键列表
func (this *StringStringMap) Keys() []string {
this.RLock()
this.mu.RLock()
keys := make([]string, 0)
for key, _ := range this.m {
keys = append(keys, key)
}
this.RUnlock()
this.mu.RUnlock()
return keys
}
// 返回值列表(注意是随机排序)
func (this *StringStringMap) Values() []string {
this.RLock()
this.mu.RLock()
vals := make([]string, 0)
for _, val := range this.m {
vals = append(vals, val)
}
this.RUnlock()
this.mu.RUnlock()
return vals
}
// 是否存在某个键
func (this *StringStringMap) Contains(key string) bool {
this.RLock()
this.mu.RLock()
_, exists := this.m[key]
this.RUnlock()
this.mu.RUnlock()
return exists
}
// 哈希表大小
func (this *StringStringMap) Size() int {
this.RLock()
this.mu.RLock()
len := len(this.m)
this.RUnlock()
this.mu.RUnlock()
return len
}
// 哈希表是否为空
func (this *StringStringMap) IsEmpty() bool {
this.RLock()
this.mu.RLock()
empty := (len(this.m) == 0)
this.RUnlock()
this.mu.RUnlock()
return empty
}
// 清空哈希表
func (this *StringStringMap) Clear() {
this.Lock()
this.mu.Lock()
this.m = make(map[string]string)
this.Unlock()
this.mu.Unlock()
}