mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 20:28:17 +08:00
494 lines
12 KiB
Go
494 lines
12 KiB
Go
// Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with gm file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gmap
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/gogf/gf/internal/empty"
|
|
|
|
"github.com/gogf/gf/util/gconv"
|
|
|
|
"github.com/gogf/gf/container/gvar"
|
|
"github.com/gogf/gf/internal/rwmutex"
|
|
)
|
|
|
|
type AnyAnyMap struct {
|
|
mu rwmutex.RWMutex
|
|
data map[interface{}]interface{}
|
|
}
|
|
|
|
// NewAnyAnyMap creates and returns an empty hash map.
|
|
// The parameter <safe> is used to specify whether using map in concurrent-safety,
|
|
// which is false in default.
|
|
func NewAnyAnyMap(safe ...bool) *AnyAnyMap {
|
|
return &AnyAnyMap{
|
|
mu: rwmutex.Create(safe...),
|
|
data: make(map[interface{}]interface{}),
|
|
}
|
|
}
|
|
|
|
// NewAnyAnyMapFrom creates and returns a hash map from given map <data>.
|
|
// Note that, the param <data> map will be set as the underlying data map(no deep copy),
|
|
// there might be some concurrent-safe issues when changing the map outside.
|
|
func NewAnyAnyMapFrom(data map[interface{}]interface{}, safe ...bool) *AnyAnyMap {
|
|
return &AnyAnyMap{
|
|
mu: rwmutex.Create(safe...),
|
|
data: data,
|
|
}
|
|
}
|
|
|
|
// Iterator iterates the hash map readonly with custom callback function <f>.
|
|
// If <f> returns true, then it continues iterating; or false to stop.
|
|
func (m *AnyAnyMap) Iterator(f func(k interface{}, v interface{}) bool) {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
for k, v := range m.data {
|
|
if !f(k, v) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// Clone returns a new hash map with copy of current map data.
|
|
func (m *AnyAnyMap) Clone(safe ...bool) *AnyAnyMap {
|
|
return NewFrom(m.MapCopy(), safe...)
|
|
}
|
|
|
|
// Map returns the underlying data map.
|
|
// Note that, if it's in concurrent-safe usage, it returns a copy of underlying data,
|
|
// or else a pointer to the underlying data.
|
|
func (m *AnyAnyMap) Map() map[interface{}]interface{} {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
if !m.mu.IsSafe() {
|
|
return m.data
|
|
}
|
|
data := make(map[interface{}]interface{}, len(m.data))
|
|
for k, v := range m.data {
|
|
data[k] = v
|
|
}
|
|
return data
|
|
}
|
|
|
|
// MapCopy returns a copy of the underlying data of the hash map.
|
|
func (m *AnyAnyMap) MapCopy() map[interface{}]interface{} {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
data := make(map[interface{}]interface{}, len(m.data))
|
|
for k, v := range m.data {
|
|
data[k] = v
|
|
}
|
|
return data
|
|
}
|
|
|
|
// MapStrAny returns a copy of the underlying data of the map as map[string]interface{}.
|
|
func (m *AnyAnyMap) MapStrAny() map[string]interface{} {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
data := make(map[string]interface{}, len(m.data))
|
|
for k, v := range m.data {
|
|
data[gconv.String(k)] = v
|
|
}
|
|
return data
|
|
}
|
|
|
|
// FilterEmpty deletes all key-value pair of which the value is empty.
|
|
// Values like: 0, nil, false, "", len(slice/map/chan) == 0 are considered empty.
|
|
func (m *AnyAnyMap) FilterEmpty() {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
for k, v := range m.data {
|
|
if empty.IsEmpty(v) {
|
|
delete(m.data, k)
|
|
}
|
|
}
|
|
}
|
|
|
|
// FilterNil deletes all key-value pair of which the value is nil.
|
|
func (m *AnyAnyMap) FilterNil() {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
for k, v := range m.data {
|
|
if empty.IsNil(v) {
|
|
delete(m.data, k)
|
|
}
|
|
}
|
|
}
|
|
|
|
// Set sets key-value to the hash map.
|
|
func (m *AnyAnyMap) Set(key interface{}, value interface{}) {
|
|
m.mu.Lock()
|
|
if m.data == nil {
|
|
m.data = make(map[interface{}]interface{})
|
|
}
|
|
m.data[key] = value
|
|
m.mu.Unlock()
|
|
}
|
|
|
|
// Sets batch sets key-values to the hash map.
|
|
func (m *AnyAnyMap) Sets(data map[interface{}]interface{}) {
|
|
m.mu.Lock()
|
|
if m.data == nil {
|
|
m.data = data
|
|
} else {
|
|
for k, v := range data {
|
|
m.data[k] = v
|
|
}
|
|
}
|
|
m.mu.Unlock()
|
|
}
|
|
|
|
// Search searches the map with given <key>.
|
|
// Second return parameter <found> is true if key was found, otherwise false.
|
|
func (m *AnyAnyMap) Search(key interface{}) (value interface{}, found bool) {
|
|
m.mu.RLock()
|
|
if m.data != nil {
|
|
value, found = m.data[key]
|
|
}
|
|
m.mu.RUnlock()
|
|
return
|
|
}
|
|
|
|
// Get returns the value by given <key>.
|
|
func (m *AnyAnyMap) Get(key interface{}) (value interface{}) {
|
|
m.mu.RLock()
|
|
if m.data != nil {
|
|
value, _ = m.data[key]
|
|
}
|
|
m.mu.RUnlock()
|
|
return
|
|
}
|
|
|
|
// Pop retrieves and deletes an item from the map.
|
|
func (m *AnyAnyMap) Pop() (key, value interface{}) {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
for key, value = range m.data {
|
|
delete(m.data, key)
|
|
return
|
|
}
|
|
return
|
|
}
|
|
|
|
// Pops retrieves and deletes <size> items from the map.
|
|
// It returns all items if size == -1.
|
|
func (m *AnyAnyMap) Pops(size int) map[interface{}]interface{} {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
if size > len(m.data) || size == -1 {
|
|
size = len(m.data)
|
|
}
|
|
if size == 0 {
|
|
return nil
|
|
}
|
|
var (
|
|
index = 0
|
|
newMap = make(map[interface{}]interface{}, size)
|
|
)
|
|
for k, v := range m.data {
|
|
delete(m.data, k)
|
|
newMap[k] = v
|
|
index++
|
|
if index == size {
|
|
break
|
|
}
|
|
}
|
|
return newMap
|
|
}
|
|
|
|
// doSetWithLockCheck checks whether value of the key exists with mutex.Lock,
|
|
// if not exists, set value to the map with given <key>,
|
|
// or else just return the existing value.
|
|
//
|
|
// When setting value, if <value> is type of <func() interface {}>,
|
|
// it will be executed with mutex.Lock of the hash map,
|
|
// and its return value will be set to the map with <key>.
|
|
//
|
|
// It returns value with given <key>.
|
|
func (m *AnyAnyMap) doSetWithLockCheck(key interface{}, value interface{}) interface{} {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
if m.data == nil {
|
|
m.data = make(map[interface{}]interface{})
|
|
}
|
|
if v, ok := m.data[key]; ok {
|
|
return v
|
|
}
|
|
if f, ok := value.(func() interface{}); ok {
|
|
value = f()
|
|
}
|
|
if value != nil {
|
|
m.data[key] = value
|
|
}
|
|
return value
|
|
}
|
|
|
|
// GetOrSet returns the value by key,
|
|
// or sets value with given <value> if it does not exist and then returns this value.
|
|
func (m *AnyAnyMap) GetOrSet(key interface{}, value interface{}) interface{} {
|
|
if v, ok := m.Search(key); !ok {
|
|
return m.doSetWithLockCheck(key, value)
|
|
} else {
|
|
return v
|
|
}
|
|
}
|
|
|
|
// GetOrSetFunc returns the value by key,
|
|
// or sets value with returned value of callback function <f> if it does not exist
|
|
// and then returns this value.
|
|
func (m *AnyAnyMap) GetOrSetFunc(key interface{}, f func() interface{}) interface{} {
|
|
if v, ok := m.Search(key); !ok {
|
|
return m.doSetWithLockCheck(key, f())
|
|
} else {
|
|
return v
|
|
}
|
|
}
|
|
|
|
// GetOrSetFuncLock returns the value by key,
|
|
// or sets value with returned value of callback function <f> if it does not exist
|
|
// and then returns this value.
|
|
//
|
|
// GetOrSetFuncLock differs with GetOrSetFunc function is that it executes function <f>
|
|
// with mutex.Lock of the hash map.
|
|
func (m *AnyAnyMap) GetOrSetFuncLock(key interface{}, f func() interface{}) interface{} {
|
|
if v, ok := m.Search(key); !ok {
|
|
return m.doSetWithLockCheck(key, f)
|
|
} else {
|
|
return v
|
|
}
|
|
}
|
|
|
|
// GetVar returns a Var with the value by given <key>.
|
|
// The returned Var is un-concurrent safe.
|
|
func (m *AnyAnyMap) GetVar(key interface{}) *gvar.Var {
|
|
return gvar.New(m.Get(key))
|
|
}
|
|
|
|
// GetVarOrSet returns a Var with result from GetVarOrSet.
|
|
// The returned Var is un-concurrent safe.
|
|
func (m *AnyAnyMap) GetVarOrSet(key interface{}, value interface{}) *gvar.Var {
|
|
return gvar.New(m.GetOrSet(key, value))
|
|
}
|
|
|
|
// GetVarOrSetFunc returns a Var with result from GetOrSetFunc.
|
|
// The returned Var is un-concurrent safe.
|
|
func (m *AnyAnyMap) GetVarOrSetFunc(key interface{}, f func() interface{}) *gvar.Var {
|
|
return gvar.New(m.GetOrSetFunc(key, f))
|
|
}
|
|
|
|
// GetVarOrSetFuncLock returns a Var with result from GetOrSetFuncLock.
|
|
// The returned Var is un-concurrent safe.
|
|
func (m *AnyAnyMap) GetVarOrSetFuncLock(key interface{}, f func() interface{}) *gvar.Var {
|
|
return gvar.New(m.GetOrSetFuncLock(key, f))
|
|
}
|
|
|
|
// SetIfNotExist sets <value> to the map if the <key> does not exist, and then returns true.
|
|
// It returns false if <key> exists, and <value> would be ignored.
|
|
func (m *AnyAnyMap) SetIfNotExist(key interface{}, value interface{}) bool {
|
|
if !m.Contains(key) {
|
|
m.doSetWithLockCheck(key, value)
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// SetIfNotExistFunc sets value with return value of callback function <f>, and then returns true.
|
|
// It returns false if <key> exists, and <value> would be ignored.
|
|
func (m *AnyAnyMap) SetIfNotExistFunc(key interface{}, f func() interface{}) bool {
|
|
if !m.Contains(key) {
|
|
m.doSetWithLockCheck(key, f())
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// SetIfNotExistFuncLock sets value with return value of callback function <f>, and then returns true.
|
|
// It returns false if <key> exists, and <value> would be ignored.
|
|
//
|
|
// SetIfNotExistFuncLock differs with SetIfNotExistFunc function is that
|
|
// it executes function <f> with mutex.Lock of the hash map.
|
|
func (m *AnyAnyMap) SetIfNotExistFuncLock(key interface{}, f func() interface{}) bool {
|
|
if !m.Contains(key) {
|
|
m.doSetWithLockCheck(key, f)
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Remove deletes value from map by given <key>, and return this deleted value.
|
|
func (m *AnyAnyMap) Remove(key interface{}) (value interface{}) {
|
|
m.mu.Lock()
|
|
if m.data != nil {
|
|
var ok bool
|
|
if value, ok = m.data[key]; ok {
|
|
delete(m.data, key)
|
|
}
|
|
}
|
|
m.mu.Unlock()
|
|
return
|
|
}
|
|
|
|
// Removes batch deletes values of the map by keys.
|
|
func (m *AnyAnyMap) Removes(keys []interface{}) {
|
|
m.mu.Lock()
|
|
if m.data != nil {
|
|
for _, key := range keys {
|
|
delete(m.data, key)
|
|
}
|
|
}
|
|
m.mu.Unlock()
|
|
}
|
|
|
|
// Keys returns all keys of the map as a slice.
|
|
func (m *AnyAnyMap) Keys() []interface{} {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
var (
|
|
keys = make([]interface{}, len(m.data))
|
|
index = 0
|
|
)
|
|
for key := range m.data {
|
|
keys[index] = key
|
|
index++
|
|
}
|
|
return keys
|
|
}
|
|
|
|
// Values returns all values of the map as a slice.
|
|
func (m *AnyAnyMap) Values() []interface{} {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
var (
|
|
values = make([]interface{}, len(m.data))
|
|
index = 0
|
|
)
|
|
for _, value := range m.data {
|
|
values[index] = value
|
|
index++
|
|
}
|
|
return values
|
|
}
|
|
|
|
// Contains checks whether a key exists.
|
|
// It returns true if the <key> exists, or else false.
|
|
func (m *AnyAnyMap) Contains(key interface{}) bool {
|
|
var ok bool
|
|
m.mu.RLock()
|
|
if m.data != nil {
|
|
_, ok = m.data[key]
|
|
}
|
|
m.mu.RUnlock()
|
|
return ok
|
|
}
|
|
|
|
// Size returns the size of the map.
|
|
func (m *AnyAnyMap) Size() int {
|
|
m.mu.RLock()
|
|
length := len(m.data)
|
|
m.mu.RUnlock()
|
|
return length
|
|
}
|
|
|
|
// IsEmpty checks whether the map is empty.
|
|
// It returns true if map is empty, or else false.
|
|
func (m *AnyAnyMap) IsEmpty() bool {
|
|
return m.Size() == 0
|
|
}
|
|
|
|
// Clear deletes all data of the map, it will remake a new underlying data map.
|
|
func (m *AnyAnyMap) Clear() {
|
|
m.mu.Lock()
|
|
m.data = make(map[interface{}]interface{})
|
|
m.mu.Unlock()
|
|
}
|
|
|
|
// Replace the data of the map with given <data>.
|
|
func (m *AnyAnyMap) Replace(data map[interface{}]interface{}) {
|
|
m.mu.Lock()
|
|
m.data = data
|
|
m.mu.Unlock()
|
|
}
|
|
|
|
// LockFunc locks writing with given callback function <f> within RWMutex.Lock.
|
|
func (m *AnyAnyMap) LockFunc(f func(m map[interface{}]interface{})) {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
f(m.data)
|
|
}
|
|
|
|
// RLockFunc locks reading with given callback function <f> within RWMutex.RLock.
|
|
func (m *AnyAnyMap) RLockFunc(f func(m map[interface{}]interface{})) {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
f(m.data)
|
|
}
|
|
|
|
// Flip exchanges key-value of the map to value-key.
|
|
func (m *AnyAnyMap) Flip() {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
n := make(map[interface{}]interface{}, len(m.data))
|
|
for k, v := range m.data {
|
|
n[v] = k
|
|
}
|
|
m.data = n
|
|
}
|
|
|
|
// Merge merges two hash maps.
|
|
// The <other> map will be merged into the map <m>.
|
|
func (m *AnyAnyMap) Merge(other *AnyAnyMap) {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
if m.data == nil {
|
|
m.data = other.MapCopy()
|
|
return
|
|
}
|
|
if other != m {
|
|
other.mu.RLock()
|
|
defer other.mu.RUnlock()
|
|
}
|
|
for k, v := range other.data {
|
|
m.data[k] = v
|
|
}
|
|
}
|
|
|
|
// MarshalJSON implements the interface MarshalJSON for json.Marshal.
|
|
func (m *AnyAnyMap) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(gconv.Map(m.Map()))
|
|
}
|
|
|
|
// UnmarshalJSON implements the interface UnmarshalJSON for json.Unmarshal.
|
|
func (m *AnyAnyMap) UnmarshalJSON(b []byte) error {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
if m.data == nil {
|
|
m.data = make(map[interface{}]interface{})
|
|
}
|
|
var data map[string]interface{}
|
|
if err := json.Unmarshal(b, &data); err != nil {
|
|
return err
|
|
}
|
|
for k, v := range data {
|
|
m.data[k] = v
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// UnmarshalValue is an interface implement which sets any type of value for map.
|
|
func (m *AnyAnyMap) UnmarshalValue(value interface{}) (err error) {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
if m.data == nil {
|
|
m.data = make(map[interface{}]interface{})
|
|
}
|
|
for k, v := range gconv.Map(value) {
|
|
m.data[k] = v
|
|
}
|
|
return
|
|
}
|