gf/g/container/gset/gset_int_set.go

280 lines
6.5 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 (
"github.com/gogf/gf/g/internal/rwmutex"
"github.com/gogf/gf/g/util/gconv"
2019-02-02 15:16:45 +08:00
"strings"
2017-11-23 10:21:28 +08:00
)
type IntSet struct {
mu *rwmutex.RWMutex
m map[int]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.
// The param <unsafe> used to specify whether using set in un-concurrent-safety,
// which is false in default.
func NewIntSet(unsafe...bool) *IntSet {
return &IntSet{
m : make(map[int]struct{}),
mu : rwmutex.New(unsafe...),
}
2017-11-23 10:21:28 +08:00
}
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.
func (set *IntSet) Iterator(f func (v int) bool) *IntSet {
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-02-02 15:16:45 +08:00
func (set *IntSet) Add(item...int) *IntSet {
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 *IntSet) Contains(item int) 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 *IntSet) Remove(item int) *IntSet {
set.mu.Lock()
2019-02-02 15:16:45 +08:00
delete(set.m, item)
set.mu.Unlock()
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 *IntSet) 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 *IntSet) Clear() *IntSet {
set.mu.Lock()
set.m = make(map[int]struct{})
set.mu.Unlock()
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 *IntSet) Slice() []int {
set.mu.RLock()
ret := make([]int, len(set.m))
2017-11-23 10:21:28 +08:00
i := 0
2019-01-31 21:15:39 +08:00
for k, _ := range set.m {
ret[i] = k
2017-11-23 10:21:28 +08:00
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 *IntSet) Join(glue string) string {
return strings.Join(gconv.Strings(set.Slice()), ",")
}
2019-04-24 18:15:50 +08:00
// String returns items as a string, which are joined by char ','.
func (set *IntSet) String() string {
2019-02-02 15:16:45 +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 *IntSet) LockFunc(f func(m map[int]struct{})) *IntSet {
set.mu.Lock()
defer set.mu.Unlock()
f(set.m)
return set
}
2019-04-24 18:15:50 +08:00
// RLockFunc locks reading with callback function <f>.
func (set *IntSet) RLockFunc(f func(m map[int]struct{})) *IntSet {
set.mu.RLock()
defer set.mu.RUnlock()
f(set.m)
return set
}
2019-04-24 18:15:50 +08:00
// Equal checks whether the two sets equal.
func (set *IntSet) Equal(other *IntSet) 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 *IntSet) IsSubsetOf(other *IntSet) 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-02-01 17:30:23 +08:00
func (set *IntSet) Union(others ... *IntSet) (newSet *IntSet) {
newSet = NewIntSet(true)
set.mu.RLock()
defer set.mu.RUnlock()
2019-02-01 17:30:23 +08:00
for _, other := range others {
if set != other {
other.mu.RLock()
}
for k, v := range set.m {
newSet.m[k] = v
}
2019-02-01 17:30:23 +08:00
if set != other {
for k, v := range other.m {
newSet.m[k] = v
}
}
if set != other {
other.mu.RUnlock()
}
}
2019-02-01 17:30:23 +08:00
return
}
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-02-01 17:30:23 +08:00
func (set *IntSet) Diff(others...*IntSet) (newSet *IntSet) {
newSet = NewIntSet(true)
set.mu.RLock()
defer set.mu.RUnlock()
2019-02-01 17:30:23 +08:00
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
}
}
2019-02-01 17:30:23 +08:00
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-02-01 17:30:23 +08:00
func (set *IntSet) Intersect(others...*IntSet) (newSet *IntSet) {
newSet = NewIntSet(true)
set.mu.RLock()
defer set.mu.RUnlock()
2019-02-01 17:30:23 +08:00
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 *IntSet) Complement(full *IntSet) (newSet *IntSet) {
newSet = NewIntSet(true)
set.mu.RLock()
defer set.mu.RUnlock()
2019-02-01 17:30:23 +08:00
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>.
func (set *IntSet) Merge(others ... *IntSet) *IntSet {
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 *IntSet) Sum() (sum int) {
set.mu.RLock()
defer set.mu.RUnlock()
for k, _ := range set.m {
sum += k
}
return
}