forked from cloudfoundry/bosh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
instance_slug.go
69 lines (53 loc) · 1.46 KB
/
instance_slug.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package director
import (
"fmt"
"strings"
bosherr "github.com/cloudfoundry/bosh-utils/errors"
)
type InstanceSlug struct {
name string
indexOrID string
}
func NewInstanceSlug(name, indexOrID string) InstanceSlug {
if len(name) == 0 {
panic("Expected instance to specify non-empty name")
}
if len(indexOrID) == 0 {
panic("Expected instance to specify non-empty index or ID")
}
return InstanceSlug{name: name, indexOrID: indexOrID}
}
func (s InstanceSlug) Name() string { return s.name }
func (s InstanceSlug) IndexOrID() string { return s.indexOrID }
func (s InstanceSlug) IsProvided() bool { return len(s.name) > 0 }
func (s InstanceSlug) String() string {
return fmt.Sprintf("%s/%s", s.name, s.indexOrID)
}
func (s *InstanceSlug) UnmarshalFlag(data string) error {
slug, err := parseInstanceSlug(data)
if err != nil {
return err
}
*s = slug
return nil
}
func parseInstanceSlug(str string) (InstanceSlug, error) {
pieces := strings.Split(str, "/")
if len(pieces) != 2 {
return InstanceSlug{}, bosherr.Errorf(
"Expected instance '%s' to be in format 'name/index-or-id'", str)
}
if len(pieces[0]) == 0 {
return InstanceSlug{}, bosherr.Errorf(
"Expected instance '%s' to specify non-empty name", str)
}
if len(pieces[1]) == 0 {
return InstanceSlug{}, bosherr.Errorf(
"Expected instance '%s' to specify non-empty index or ID", str)
}
slug := InstanceSlug{
name: pieces[0],
indexOrID: pieces[1],
}
return slug, nil
}