mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
33 lines
820 B
Go
33 lines
820 B
Go
package report
|
|
|
|
import "sort"
|
|
|
|
// IDList is a list of string IDs, which are always sorted and unique.
|
|
type IDList []string
|
|
|
|
// MakeIDList makes a new IDList.
|
|
func MakeIDList(ids ...string) IDList {
|
|
sort.Strings(ids)
|
|
return IDList(ids)
|
|
}
|
|
|
|
// Add is the only correct way to add ids to an IDList.
|
|
func (a IDList) Add(ids ...string) IDList {
|
|
for _, s := range ids {
|
|
i := sort.Search(len(a), func(i int) bool { return a[i] >= s })
|
|
if i < len(a) && a[i] == s {
|
|
// The list already has the element.
|
|
continue
|
|
}
|
|
// It a new element, insert it in order.
|
|
a = append(a[:i], append(IDList{s}, a[i:]...)...)
|
|
}
|
|
return a
|
|
}
|
|
|
|
// Contains returns true if id is in the list.
|
|
func (a IDList) Contains(id string) bool {
|
|
i := sort.Search(len(a), func(i int) bool { return a[i] >= id })
|
|
return i < len(a) && a[i] == id
|
|
}
|