gf/g/container/gset/gset_string_set.go

321 lines
6.8 KiB
Go
Raw Normal View History

// Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
2017-12-29 16:03:30 +08:00
//
// 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.
2017-12-29 16:03:30 +08:00
//
2017-12-31 18:19:58 +08:00
2017-11-23 10:21:28 +08:00
package gset
import (
2019-06-19 09:06:52 +08:00
"github.com/gogf/gf/g/internal/rwmutex"
2019-04-24 18:15:50 +08:00
"github.com/gogf/gf/g/util/gconv"
"strings"
2017-11-23 10:21:28 +08:00
)
type StringSet struct {
mu *rwmutex.RWMutex
m map[string]struct{}
2017-11-23 10:21:28 +08:00
}
2019-04-24 18:15:50 +08:00
// New create and returns a new set, which contains un-repeated items.
2019-06-11 20:57:43 +08:00
// The parameter <unsafe> used to specify whether using set in un-concurrent-safety,
2019-04-24 18:15:50 +08:00
// which is false in default.
func NewStringSet(safe ...bool) *StringSet {
2019-06-19 09:06:52 +08:00
return &StringSet{
m: make(map[string]struct{}),
mu: rwmutex.New(safe...),
}
2017-11-23 10:21:28 +08:00
}
// NewStringSetFrom returns a new set from <items>.
func NewStringSetFrom(items []string, safe ...bool) *StringSet {
m := make(map[string]struct{})
for _, v := range items {
m[v] = struct{}{}
}
return &StringSet{
2019-06-19 09:06:52 +08:00
m: m,
mu: rwmutex.New(safe...),
}
}
2019-04-24 18:15:50 +08:00
// Iterator iterates the set with given callback function <f>,
2019-02-02 15:16:45 +08:00
// if <f> returns true then continue iterating; or false to stop.
2019-06-19 09:06:52 +08:00
func (set *StringSet) Iterator(f func(v string) bool) *StringSet {
set.mu.RLock()
defer set.mu.RUnlock()
for k, _ := range set.m {
2018-04-11 16:06:45 +08:00
if !f(k) {
break
}
}
return set
}
2019-04-24 18:15:50 +08:00
// Add adds one or multiple items to the set.
2019-06-19 09:06:52 +08:00
func (set *StringSet) Add(item ...string) *StringSet {
set.mu.Lock()
2019-02-02 15:16:45 +08:00
for _, v := range item {
set.m[v] = struct{}{}
}
set.mu.Unlock()
return set
2017-11-23 10:21:28 +08:00
}
2019-04-24 18:15:50 +08:00
// Contains checks whether the set contains <item>.
func (set *StringSet) Contains(item string) bool {
set.mu.RLock()
_, exists := set.m[item]
set.mu.RUnlock()
2017-11-23 10:21:28 +08:00
return exists
}
2019-04-24 18:15:50 +08:00
// Remove deletes <item> from set.
2019-02-02 15:16:45 +08:00
func (set *StringSet) Remove(item string) *StringSet {
set.mu.Lock()
2019-02-02 15:16:45 +08:00
delete(set.m, item)
set.mu.Unlock()
2019-06-19 09:06:52 +08:00
return set
2017-11-23 10:21:28 +08:00
}
2019-04-24 18:15:50 +08:00
// Size returns the size of the set.
func (set *StringSet) Size() int {
set.mu.RLock()
l := len(set.m)
set.mu.RUnlock()
2017-11-23 10:21:28 +08:00
return l
}
2019-04-24 18:15:50 +08:00
// Clear deletes all items of the set.
func (set *StringSet) Clear() *StringSet {
set.mu.Lock()
set.m = make(map[string]struct{})
set.mu.Unlock()
2019-06-19 09:06:52 +08:00
return set
2017-11-23 10:21:28 +08:00
}
2019-04-24 18:15:50 +08:00
// Slice returns the a of items of the set as slice.
func (set *StringSet) Slice() []string {
set.mu.RLock()
ret := make([]string, len(set.m))
2017-11-23 10:21:28 +08:00
i := 0
for item := range set.m {
2017-11-23 10:21:28 +08:00
ret[i] = item
i++
}
set.mu.RUnlock()
2017-11-23 10:21:28 +08:00
return ret
}
2019-04-24 18:15:50 +08:00
// Join joins items with a string <glue>.
2019-02-02 15:16:45 +08:00
func (set *StringSet) Join(glue string) string {
2019-06-19 09:06:52 +08:00
return strings.Join(set.Slice(), ",")
2019-02-02 15:16:45 +08:00
}
2019-04-24 18:15:50 +08:00
// String returns items as a string, which are joined by char ','.
func (set *StringSet) String() string {
2019-06-19 09:06:52 +08:00
return set.Join(",")
2017-11-23 10:21:28 +08:00
}
2019-04-24 18:15:50 +08:00
// LockFunc locks writing with callback function <f>.
func (set *StringSet) LockFunc(f func(m map[string]struct{})) {
set.mu.Lock()
defer set.mu.Unlock()
f(set.m)
}
2019-04-24 18:15:50 +08:00
// RLockFunc locks reading with callback function <f>.
func (set *StringSet) RLockFunc(f func(m map[string]struct{})) {
set.mu.RLock()
defer set.mu.RUnlock()
f(set.m)
}
2019-04-24 18:15:50 +08:00
// Equal checks whether the two sets equal.
func (set *StringSet) Equal(other *StringSet) bool {
if set == other {
return true
}
set.mu.RLock()
defer set.mu.RUnlock()
other.mu.RLock()
defer other.mu.RUnlock()
if len(set.m) != len(other.m) {
return false
}
for key := range set.m {
if _, ok := other.m[key]; !ok {
return false
}
}
return true
}
2019-04-24 18:15:50 +08:00
// IsSubsetOf checks whether the current set is a sub-set of <other>.
2019-01-31 21:15:39 +08:00
func (set *StringSet) IsSubsetOf(other *StringSet) bool {
if set == other {
return true
}
set.mu.RLock()
defer set.mu.RUnlock()
other.mu.RLock()
defer other.mu.RUnlock()
2019-01-31 21:15:39 +08:00
for key := range set.m {
if _, ok := other.m[key]; !ok {
return false
}
}
return true
}
2019-04-24 18:15:50 +08:00
// Union returns a new set which is the union of <set> and <other>.
// Which means, all the items in <newSet> are in <set> or in <other>.
2019-06-19 09:06:52 +08:00
func (set *StringSet) Union(others ...*StringSet) (newSet *StringSet) {
newSet = NewStringSet(true)
set.mu.RLock()
defer set.mu.RUnlock()
for _, other := range others {
if set != other {
other.mu.RLock()
}
for k, v := range set.m {
newSet.m[k] = v
}
if set != other {
for k, v := range other.m {
newSet.m[k] = v
}
}
if set != other {
other.mu.RUnlock()
}
}
2019-06-19 09:06:52 +08:00
return
2019-02-01 17:30:23 +08:00
}
2019-04-24 18:15:50 +08:00
// Diff returns a new set which is the difference set from <set> to <other>.
// Which means, all the items in <newSet> are in <set> but not in <other>.
2019-06-19 09:06:52 +08:00
func (set *StringSet) Diff(others ...*StringSet) (newSet *StringSet) {
newSet = NewStringSet(true)
set.mu.RLock()
defer set.mu.RUnlock()
for _, other := range others {
if set == other {
continue
}
other.mu.RLock()
for k, v := range set.m {
if _, ok := other.m[k]; !ok {
newSet.m[k] = v
}
}
other.mu.RUnlock()
}
return
}
2019-04-24 18:15:50 +08:00
// Intersect returns a new set which is the intersection from <set> to <other>.
// Which means, all the items in <newSet> are in <set> and also in <other>.
2019-06-19 09:06:52 +08:00
func (set *StringSet) Intersect(others ...*StringSet) (newSet *StringSet) {
newSet = NewStringSet(true)
set.mu.RLock()
defer set.mu.RUnlock()
for _, other := range others {
if set != other {
other.mu.RLock()
}
for k, v := range set.m {
if _, ok := other.m[k]; ok {
newSet.m[k] = v
}
}
if set != other {
other.mu.RUnlock()
}
}
return
}
2019-04-24 18:15:50 +08:00
// Complement returns a new set which is the complement from <set> to <full>.
// Which means, all the items in <newSet> are in <full> and not in <set>.
2019-02-02 15:16:45 +08:00
//
2019-04-24 18:15:50 +08:00
// It returns the difference between <full> and <set>
// if the given set <full> is not the full set of <set>.
func (set *StringSet) Complement(full *StringSet) (newSet *StringSet) {
2019-06-19 09:06:52 +08:00
newSet = NewStringSet(true)
set.mu.RLock()
defer set.mu.RUnlock()
if set != full {
full.mu.RLock()
defer full.mu.RUnlock()
}
for k, v := range full.m {
if _, ok := set.m[k]; !ok {
newSet.m[k] = v
}
}
return
2019-02-01 17:30:23 +08:00
}
2019-04-24 18:15:50 +08:00
// Merge adds items from <others> sets into <set>.
2019-06-19 09:06:52 +08:00
func (set *StringSet) Merge(others ...*StringSet) *StringSet {
2019-04-24 18:15:50 +08:00
set.mu.Lock()
defer set.mu.Unlock()
for _, other := range others {
if set != other {
other.mu.RLock()
}
for k, v := range other.m {
set.m[k] = v
}
if set != other {
other.mu.RUnlock()
}
}
return set
}
// Sum sums items.
// Note: The items should be converted to int type,
// or you'd get a result that you unexpected.
func (set *StringSet) Sum() (sum int) {
set.mu.RLock()
defer set.mu.RUnlock()
for k, _ := range set.m {
sum += gconv.Int(k)
}
return
2019-04-26 08:57:48 +08:00
}
// Pops randomly pops an item from set.
func (set *StringSet) Pop(size int) string {
set.mu.RLock()
defer set.mu.RUnlock()
for k, _ := range set.m {
return k
}
return ""
}
// Pops randomly pops <size> items from set.
func (set *StringSet) Pops(size int) []string {
set.mu.RLock()
defer set.mu.RUnlock()
if size > len(set.m) {
size = len(set.m)
}
index := 0
array := make([]string, size)
for k, _ := range set.m {
array[index] = k
index++
if index == size {
break
}
}
return array
2019-06-19 09:06:52 +08:00
}