mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
add hash kvmap and let other hash map base on it. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: hailaz <739476267@qq.com>
347 lines
9.8 KiB
Go
347 lines
9.8 KiB
Go
// Copyright GoFrame Author(https://goframe.org). 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 this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gmap
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/gogf/gf/v2/container/gvar"
|
|
)
|
|
|
|
// AnyAnyMap wraps map type `map[any]any` and provides more map features.
|
|
type AnyAnyMap struct {
|
|
*KVMap[any, any]
|
|
once sync.Once
|
|
}
|
|
|
|
// 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 {
|
|
m := &AnyAnyMap{
|
|
KVMap: NewKVMap[any, any](safe...),
|
|
}
|
|
return m
|
|
}
|
|
|
|
// 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[any]any, safe ...bool) *AnyAnyMap {
|
|
m := &AnyAnyMap{
|
|
KVMap: NewKVMapFrom(data, safe...),
|
|
}
|
|
return m
|
|
}
|
|
|
|
// lazyInit lazily initializes the map.
|
|
func (m *AnyAnyMap) lazyInit() {
|
|
m.once.Do(func() {
|
|
if m.KVMap == nil {
|
|
m.KVMap = NewKVMap[any, any](false)
|
|
}
|
|
})
|
|
}
|
|
|
|
// 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 any, v any) bool) {
|
|
m.lazyInit()
|
|
m.KVMap.Iterator(f)
|
|
}
|
|
|
|
// Clone returns a new hash map with copy of current map data.
|
|
func (m *AnyAnyMap) Clone(safe ...bool) *AnyAnyMap {
|
|
m.lazyInit()
|
|
return NewAnyAnyMapFrom(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[any]any {
|
|
m.lazyInit()
|
|
return m.KVMap.Map()
|
|
}
|
|
|
|
// MapCopy returns a shallow copy of the underlying data of the hash map.
|
|
func (m *AnyAnyMap) MapCopy() map[any]any {
|
|
m.lazyInit()
|
|
return m.KVMap.MapCopy()
|
|
}
|
|
|
|
// MapStrAny returns a copy of the underlying data of the map as map[string]any.
|
|
func (m *AnyAnyMap) MapStrAny() map[string]any {
|
|
m.lazyInit()
|
|
return m.KVMap.MapStrAny()
|
|
}
|
|
|
|
// 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.lazyInit()
|
|
m.KVMap.FilterEmpty()
|
|
}
|
|
|
|
// FilterNil deletes all key-value pair of which the value is nil.
|
|
func (m *AnyAnyMap) FilterNil() {
|
|
m.lazyInit()
|
|
m.KVMap.FilterNil()
|
|
}
|
|
|
|
// Set sets key-value to the hash map.
|
|
func (m *AnyAnyMap) Set(key any, value any) {
|
|
m.lazyInit()
|
|
m.KVMap.Set(key, value)
|
|
}
|
|
|
|
// Sets batch sets key-values to the hash map.
|
|
func (m *AnyAnyMap) Sets(data map[any]any) {
|
|
m.lazyInit()
|
|
m.KVMap.Sets(data)
|
|
}
|
|
|
|
// Search searches the map with given `key`.
|
|
// Second return parameter `found` is true if key was found, otherwise false.
|
|
func (m *AnyAnyMap) Search(key any) (value any, found bool) {
|
|
m.lazyInit()
|
|
return m.KVMap.Search(key)
|
|
}
|
|
|
|
// Get returns the value by given `key`.
|
|
func (m *AnyAnyMap) Get(key any) (value any) {
|
|
m.lazyInit()
|
|
return m.KVMap.Get(key)
|
|
}
|
|
|
|
// Pop retrieves and deletes an item from the map.
|
|
func (m *AnyAnyMap) Pop() (key, value any) {
|
|
m.lazyInit()
|
|
return m.KVMap.Pop()
|
|
}
|
|
|
|
// Pops retrieves and deletes `size` items from the map.
|
|
// It returns all items if size == -1.
|
|
func (m *AnyAnyMap) Pops(size int) map[any]any {
|
|
m.lazyInit()
|
|
return m.KVMap.Pops(size)
|
|
}
|
|
|
|
// 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 any, value any) any {
|
|
m.lazyInit()
|
|
return m.KVMap.GetOrSet(key, value)
|
|
}
|
|
|
|
// 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 any, f func() any) any {
|
|
m.lazyInit()
|
|
return m.KVMap.GetOrSetFunc(key, f)
|
|
}
|
|
|
|
// 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 any, f func() any) any {
|
|
m.lazyInit()
|
|
return m.KVMap.GetOrSetFuncLock(key, f)
|
|
}
|
|
|
|
// GetVar returns a Var with the value by given `key`.
|
|
// The returned Var is un-concurrent safe.
|
|
func (m *AnyAnyMap) GetVar(key any) *gvar.Var {
|
|
m.lazyInit()
|
|
return m.KVMap.GetVar(key)
|
|
}
|
|
|
|
// GetVarOrSet returns a Var with result from GetOrSet.
|
|
// The returned Var is un-concurrent safe.
|
|
func (m *AnyAnyMap) GetVarOrSet(key any, value any) *gvar.Var {
|
|
m.lazyInit()
|
|
return m.KVMap.GetVarOrSet(key, value)
|
|
}
|
|
|
|
// GetVarOrSetFunc returns a Var with result from GetOrSetFunc.
|
|
// The returned Var is un-concurrent safe.
|
|
func (m *AnyAnyMap) GetVarOrSetFunc(key any, f func() any) *gvar.Var {
|
|
m.lazyInit()
|
|
return m.KVMap.GetVarOrSetFunc(key, f)
|
|
}
|
|
|
|
// GetVarOrSetFuncLock returns a Var with result from GetOrSetFuncLock.
|
|
// The returned Var is un-concurrent safe.
|
|
func (m *AnyAnyMap) GetVarOrSetFuncLock(key any, f func() any) *gvar.Var {
|
|
m.lazyInit()
|
|
return m.KVMap.GetVarOrSetFuncLock(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 any, value any) bool {
|
|
m.lazyInit()
|
|
return m.KVMap.SetIfNotExist(key, value)
|
|
}
|
|
|
|
// 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 any, f func() any) bool {
|
|
m.lazyInit()
|
|
return m.KVMap.SetIfNotExistFunc(key, f)
|
|
}
|
|
|
|
// 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 any, f func() any) bool {
|
|
m.lazyInit()
|
|
return m.KVMap.SetIfNotExistFuncLock(key, f)
|
|
}
|
|
|
|
// Remove deletes value from map by given `key`, and return this deleted value.
|
|
func (m *AnyAnyMap) Remove(key any) (value any) {
|
|
m.lazyInit()
|
|
return m.KVMap.Remove(key)
|
|
}
|
|
|
|
// Removes batch deletes values of the map by keys.
|
|
func (m *AnyAnyMap) Removes(keys []any) {
|
|
m.lazyInit()
|
|
m.KVMap.Removes(keys)
|
|
}
|
|
|
|
// Keys returns all keys of the map as a slice.
|
|
func (m *AnyAnyMap) Keys() []any {
|
|
m.lazyInit()
|
|
return m.KVMap.Keys()
|
|
}
|
|
|
|
// Values returns all values of the map as a slice.
|
|
func (m *AnyAnyMap) Values() []any {
|
|
m.lazyInit()
|
|
return m.KVMap.Values()
|
|
}
|
|
|
|
// Contains checks whether a key exists.
|
|
// It returns true if the `key` exists, or else false.
|
|
func (m *AnyAnyMap) Contains(key any) bool {
|
|
m.lazyInit()
|
|
return m.KVMap.Contains(key)
|
|
}
|
|
|
|
// Size returns the size of the map.
|
|
func (m *AnyAnyMap) Size() int {
|
|
m.lazyInit()
|
|
return m.KVMap.Size()
|
|
}
|
|
|
|
// IsEmpty checks whether the map is empty.
|
|
// It returns true if map is empty, or else false.
|
|
func (m *AnyAnyMap) IsEmpty() bool {
|
|
m.lazyInit()
|
|
return m.KVMap.IsEmpty()
|
|
}
|
|
|
|
// Clear deletes all data of the map, it will remake a new underlying data map.
|
|
func (m *AnyAnyMap) Clear() {
|
|
m.lazyInit()
|
|
m.KVMap.Clear()
|
|
}
|
|
|
|
// Replace the data of the map with given `data`.
|
|
func (m *AnyAnyMap) Replace(data map[any]any) {
|
|
m.lazyInit()
|
|
m.KVMap.Replace(data)
|
|
}
|
|
|
|
// LockFunc locks writing with given callback function `f` within RWMutex.Lock.
|
|
func (m *AnyAnyMap) LockFunc(f func(m map[any]any)) {
|
|
m.lazyInit()
|
|
m.KVMap.LockFunc(f)
|
|
}
|
|
|
|
// RLockFunc locks reading with given callback function `f` within RWMutex.RLock.
|
|
func (m *AnyAnyMap) RLockFunc(f func(m map[any]any)) {
|
|
m.lazyInit()
|
|
m.KVMap.RLockFunc(f)
|
|
}
|
|
|
|
// Flip exchanges key-value of the map to value-key.
|
|
func (m *AnyAnyMap) Flip() {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
n := make(map[any]any, 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.lazyInit()
|
|
m.KVMap.Merge(other.KVMap)
|
|
}
|
|
|
|
// String returns the map as a string.
|
|
func (m *AnyAnyMap) String() string {
|
|
if m == nil {
|
|
return ""
|
|
}
|
|
m.lazyInit()
|
|
return m.KVMap.String()
|
|
}
|
|
|
|
// MarshalJSON implements the interface MarshalJSON for json.Marshal.
|
|
func (m AnyAnyMap) MarshalJSON() ([]byte, error) {
|
|
m.lazyInit()
|
|
return m.KVMap.MarshalJSON()
|
|
}
|
|
|
|
// UnmarshalJSON implements the interface UnmarshalJSON for json.Unmarshal.
|
|
func (m *AnyAnyMap) UnmarshalJSON(b []byte) error {
|
|
m.lazyInit()
|
|
return m.KVMap.UnmarshalJSON(b)
|
|
}
|
|
|
|
// UnmarshalValue is an interface implement which sets any type of value for map.
|
|
func (m *AnyAnyMap) UnmarshalValue(value any) (err error) {
|
|
m.lazyInit()
|
|
return m.KVMap.UnmarshalValue(value)
|
|
}
|
|
|
|
// DeepCopy implements interface for deep copy of current type.
|
|
func (m *AnyAnyMap) DeepCopy() any {
|
|
m.lazyInit()
|
|
return &AnyAnyMap{
|
|
KVMap: m.KVMap.DeepCopy().(*KVMap[any, any]),
|
|
}
|
|
}
|
|
|
|
// IsSubOf checks whether the current map is a sub-map of `other`.
|
|
func (m *AnyAnyMap) IsSubOf(other *AnyAnyMap) bool {
|
|
m.lazyInit()
|
|
return m.KVMap.IsSubOf(other.KVMap)
|
|
}
|
|
|
|
// Diff compares current map `m` with map `other` and returns their different keys.
|
|
// The returned `addedKeys` are the keys that are in map `m` but not in map `other`.
|
|
// The returned `removedKeys` are the keys that are in map `other` but not in map `m`.
|
|
// The returned `updatedKeys` are the keys that are both in map `m` and `other` but their values and not equal (`!=`).
|
|
func (m *AnyAnyMap) Diff(other *AnyAnyMap) (addedKeys, removedKeys, updatedKeys []any) {
|
|
m.lazyInit()
|
|
return m.KVMap.Diff(other.KVMap)
|
|
}
|