2014-06-28 00:04:11 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package util
|
|
|
|
|
2014-07-01 20:30:19 +00:00
|
|
|
import (
|
|
|
|
"sort"
|
|
|
|
)
|
|
|
|
|
2014-06-28 00:04:11 +00:00
|
|
|
type empty struct{}
|
|
|
|
|
2014-07-11 12:04:34 +00:00
|
|
|
// StringSet is a set of strings, implemented via map[string]struct{} for minimal memory consumption.
|
2014-06-28 00:04:11 +00:00
|
|
|
type StringSet map[string]empty
|
|
|
|
|
2014-06-29 02:36:44 +00:00
|
|
|
// NewStringSet creates a StringSet from a list of values.
|
|
|
|
func NewStringSet(items ...string) StringSet {
|
|
|
|
ss := StringSet{}
|
|
|
|
ss.Insert(items...)
|
|
|
|
return ss
|
|
|
|
}
|
|
|
|
|
2014-06-28 00:04:11 +00:00
|
|
|
// Insert adds items to the set.
|
|
|
|
func (s StringSet) Insert(items ...string) {
|
|
|
|
for _, item := range items {
|
|
|
|
s[item] = empty{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete removes item from the set.
|
|
|
|
func (s StringSet) Delete(item string) {
|
|
|
|
delete(s, item)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Has returns true iff item is contained in the set.
|
|
|
|
func (s StringSet) Has(item string) bool {
|
|
|
|
_, contained := s[item]
|
|
|
|
return contained
|
|
|
|
}
|
2014-07-01 20:30:19 +00:00
|
|
|
|
2014-07-18 20:08:11 +00:00
|
|
|
// HasAll returns true iff all items are contained in the set.
|
2014-07-18 20:53:36 +00:00
|
|
|
func (s StringSet) HasAll(items ...string) bool {
|
|
|
|
for _, item := range items {
|
|
|
|
if !s.Has(item) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsSuperset returns true iff s1 is a superset of s2.
|
|
|
|
func (s1 StringSet) IsSuperset(s2 StringSet) bool {
|
2014-07-26 00:58:36 +00:00
|
|
|
for item := range s2 {
|
2014-07-18 20:08:11 +00:00
|
|
|
if !s1.Has(item) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-07-11 12:04:34 +00:00
|
|
|
// List returns the contents as a sorted string slice.
|
2014-07-01 20:30:19 +00:00
|
|
|
func (s StringSet) List() []string {
|
|
|
|
res := make([]string, 0, len(s))
|
|
|
|
for key := range s {
|
|
|
|
res = append(res, key)
|
|
|
|
}
|
|
|
|
sort.StringSlice(res).Sort()
|
|
|
|
return res
|
|
|
|
}
|