Skip to content

Commit

Permalink
Add a set implementation for the names.Tag type
Browse files Browse the repository at this point in the history
  • Loading branch information
Wayne Witzel III committed Sep 18, 2014
1 parent a115ddd commit cb726f1
Show file tree
Hide file tree
Showing 3 changed files with 402 additions and 0 deletions.
27 changes: 27 additions & 0 deletions set/interface.go
@@ -0,0 +1,27 @@
// Copyright 2014 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.

package set

import (
"github.com/juju/names"
)

type Set interface {
Size() int
IsEmpty() bool
}

type TagSet interface {
Add(names.Tag)
Remove(names.Tag)
Contains(names.Tag) bool
Values() []names.Tag
SortedValues() []names.Tag

Union(Tags) Tags
Intersection(Tags) Tags
Difference(Tags) Tags

Set
}
155 changes: 155 additions & 0 deletions set/tags.go
@@ -0,0 +1,155 @@
// Copyright 2014 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.

package set

import (
"sort"

"github.com/juju/errors"
"github.com/juju/names"
)

// Tags represents the classic TagSet data structure, and contains
// names.Tag(s).
type Tags struct {
values map[names.Tag]bool
}

var _ TagSet = (*Tags)(nil)

// NewTags creates and initializes a Tags and populates it with
// inital values as specified in the parameters.
func NewTags(initial ...names.Tag) Tags {
result := Tags{values: make(map[names.Tag]bool)}
for _, value := range initial {
result.Add(value)
}
return result
}

// NewTagsFromStrings creates and initializes a Tags and populates it
// by using names.ParseTag on the initial values specified in the parameters.
func NewTagsFromStrings(initial ...string) (Tags, error) {
result := Tags{values: make(map[names.Tag]bool)}
for _, value := range initial {
tag, err := names.ParseTag(value)
if err != nil {
errors.Trace(err)
}
result.Add(tag)
}
return result, nil
}

// Size returns the number of elements in the set.
func (t Tags) Size() int {
return len(t.values)
}

// IsEmpty is true for empty or uninitialized sets.
func (t Tags) IsEmpty() bool {
return len(t.values) == 0
}

// Add puts a value into the set.
func (t *Tags) Add(value names.Tag) {
if t.values == nil {
t.values = make(map[names.Tag]bool)
}
t.values[value] = true
}

// Remove takes a value out of the set. If value wasn't in the set to start
// with, this method silently succeeds.
func (t *Tags) Remove(value names.Tag) {
delete(t.values, value)
}

// Contains returns true if the value is in the set, and false otherwise.
func (t Tags) Contains(value names.Tag) bool {
_, exists := t.values[value]
return exists
}

// Values returns an unordered slice containing all the values in the set.
func (t Tags) Values() []names.Tag {
result := make([]names.Tag, len(t.values))
i := 0
for key := range t.values {
result[i] = key
i++
}
return result
}

// stringValues returns a list of strings that represent a names.Tag
// Used internally by the SortedValues method.
func (t Tags) stringValues() []string {
result := make([]string, t.Size())
i := 0
for key := range t.values {
result[i] = key.String()
i++
}
return result
}

// SortedValues returns an ordered slice containing all the values in the set.
func (t Tags) SortedValues() []names.Tag {
values := t.stringValues()
sort.Strings(values)

result := make([]names.Tag, len(values))
for i, value := range values {
// We already know only good strings can live in the Tags set
// so we can safely ignore the error here.
tag, _ := names.ParseTag(value)
result[i] = tag
i++
}
return result
}

// Union returns a new Tags representing a union of the elments in the
// method target and the parameter.
func (t Tags) Union(other Tags) Tags {
result := NewTags()
// Use the internal map rather than going through the friendlier functions
// to avoid extra allocation of slices.
for value := range t.values {
result.values[value] = true
}
for value := range other.values {
result.values[value] = true
}
return result
}

// Intersection returns a new Tags representing a intersection of the elments in the
// method target and the parameter.
func (t Tags) Intersection(other Tags) Tags {
result := NewTags()
// Use the internal map rather than going through the friendlier functions
// to avoid extra allocation of slices.
for value := range t.values {
if other.Contains(value) {
result.values[value] = true
}
}
return result
}

// Difference returns a new Tags representing all the values in the
// target that are not in the parameter.
func (t Tags) Difference(other Tags) Tags {
result := NewTags()
// Use the internal map rather than going through the friendlier functions
// to avoid extra allocation of slices.
for value := range t.values {
if !other.Contains(value) {
result.values[value] = true
}
}
return result
}

0 comments on commit cb726f1

Please sign in to comment.