mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f2614f2107
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
246 lines
5.2 KiB
Go
246 lines
5.2 KiB
Go
/*
|
|
Open Source Initiative OSI - The MIT License (MIT):Licensing
|
|
|
|
The MIT License (MIT)
|
|
Copyright (c) 2013 Ralph Caraveo (deckarep@gmail.com)
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
the Software without restriction, including without limitation the rights to
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
of the Software, and to permit persons to whom the Software is furnished to do
|
|
so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
package mapset
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"strings"
|
|
)
|
|
|
|
type threadUnsafeSet map[interface{}]struct{}
|
|
|
|
type orderedPair struct {
|
|
first interface{}
|
|
second interface{}
|
|
}
|
|
|
|
func newThreadUnsafeSet() threadUnsafeSet {
|
|
return make(threadUnsafeSet)
|
|
}
|
|
|
|
func (pair *orderedPair) Equal(other orderedPair) bool {
|
|
if pair.first == other.first &&
|
|
pair.second == other.second {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Add(i interface{}) bool {
|
|
_, found := (*set)[i]
|
|
(*set)[i] = struct{}{}
|
|
return !found //False if it existed already
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Contains(i ...interface{}) bool {
|
|
for _, val := range i {
|
|
if _, ok := (*set)[val]; !ok {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (set *threadUnsafeSet) IsSubset(other Set) bool {
|
|
_ = other.(*threadUnsafeSet)
|
|
for elem := range *set {
|
|
if !other.Contains(elem) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (set *threadUnsafeSet) IsSuperset(other Set) bool {
|
|
return other.IsSubset(set)
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Union(other Set) Set {
|
|
o := other.(*threadUnsafeSet)
|
|
|
|
unionedSet := newThreadUnsafeSet()
|
|
|
|
for elem := range *set {
|
|
unionedSet.Add(elem)
|
|
}
|
|
for elem := range *o {
|
|
unionedSet.Add(elem)
|
|
}
|
|
return &unionedSet
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Intersect(other Set) Set {
|
|
o := other.(*threadUnsafeSet)
|
|
|
|
intersection := newThreadUnsafeSet()
|
|
// loop over smaller set
|
|
if set.Cardinality() < other.Cardinality() {
|
|
for elem := range *set {
|
|
if other.Contains(elem) {
|
|
intersection.Add(elem)
|
|
}
|
|
}
|
|
} else {
|
|
for elem := range *o {
|
|
if set.Contains(elem) {
|
|
intersection.Add(elem)
|
|
}
|
|
}
|
|
}
|
|
return &intersection
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Difference(other Set) Set {
|
|
_ = other.(*threadUnsafeSet)
|
|
|
|
difference := newThreadUnsafeSet()
|
|
for elem := range *set {
|
|
if !other.Contains(elem) {
|
|
difference.Add(elem)
|
|
}
|
|
}
|
|
return &difference
|
|
}
|
|
|
|
func (set *threadUnsafeSet) SymmetricDifference(other Set) Set {
|
|
_ = other.(*threadUnsafeSet)
|
|
|
|
aDiff := set.Difference(other)
|
|
bDiff := other.Difference(set)
|
|
return aDiff.Union(bDiff)
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Clear() {
|
|
*set = newThreadUnsafeSet()
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Remove(i interface{}) {
|
|
delete(*set, i)
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Cardinality() int {
|
|
return len(*set)
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Iter() <-chan interface{} {
|
|
ch := make(chan interface{})
|
|
go func() {
|
|
for elem := range *set {
|
|
ch <- elem
|
|
}
|
|
close(ch)
|
|
}()
|
|
|
|
return ch
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Equal(other Set) bool {
|
|
_ = other.(*threadUnsafeSet)
|
|
|
|
if set.Cardinality() != other.Cardinality() {
|
|
return false
|
|
}
|
|
for elem := range *set {
|
|
if !other.Contains(elem) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (set *threadUnsafeSet) Clone() Set {
|
|
clonedSet := newThreadUnsafeSet()
|
|
for elem := range *set {
|
|
clonedSet.Add(elem)
|
|
}
|
|
return &clonedSet
|
|
}
|
|
|
|
func (set *threadUnsafeSet) String() string {
|
|
items := make([]string, 0, len(*set))
|
|
|
|
for elem := range *set {
|
|
items = append(items, fmt.Sprintf("%v", elem))
|
|
}
|
|
return fmt.Sprintf("Set{%s}", strings.Join(items, ", "))
|
|
}
|
|
|
|
func (pair orderedPair) String() string {
|
|
return fmt.Sprintf("(%v, %v)", pair.first, pair.second)
|
|
}
|
|
|
|
func (set *threadUnsafeSet) PowerSet() Set {
|
|
powSet := NewThreadUnsafeSet()
|
|
nullset := newThreadUnsafeSet()
|
|
powSet.Add(&nullset)
|
|
|
|
for es := range *set {
|
|
u := newThreadUnsafeSet()
|
|
j := powSet.Iter()
|
|
for er := range j {
|
|
p := newThreadUnsafeSet()
|
|
if reflect.TypeOf(er).Name() == "" {
|
|
k := er.(*threadUnsafeSet)
|
|
for ek := range *(k) {
|
|
p.Add(ek)
|
|
}
|
|
} else {
|
|
p.Add(er)
|
|
}
|
|
p.Add(es)
|
|
u.Add(&p)
|
|
}
|
|
|
|
powSet = powSet.Union(&u)
|
|
}
|
|
|
|
return powSet
|
|
}
|
|
|
|
func (set *threadUnsafeSet) CartesianProduct(other Set) Set {
|
|
o := other.(*threadUnsafeSet)
|
|
cartProduct := NewThreadUnsafeSet()
|
|
|
|
for i := range *set {
|
|
for j := range *o {
|
|
elem := orderedPair{first: i, second: j}
|
|
cartProduct.Add(elem)
|
|
}
|
|
}
|
|
|
|
return cartProduct
|
|
}
|
|
|
|
func (set *threadUnsafeSet) ToSlice() []interface{} {
|
|
keys := make([]interface{}, 0, set.Cardinality())
|
|
for elem := range *set {
|
|
keys = append(keys, elem)
|
|
}
|
|
|
|
return keys
|
|
}
|