forked from serdarkalayci/go-marathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
140 lines (117 loc) · 2.87 KB
/
utils.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
Copyright 2014 The go-marathon Authors 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 marathon
import (
"errors"
"fmt"
"net"
"net/url"
"reflect"
"strings"
"sync/atomic"
"time"
"github.com/google/go-querystring/query"
)
type atomicSwitch int64
func (r *atomicSwitch) IsSwitched() bool {
return atomic.LoadInt64((*int64)(r)) != 0
}
func (r *atomicSwitch) SwitchOn() {
atomic.StoreInt64((*int64)(r), 1)
}
func (r *atomicSwitch) SwitchedOff() {
atomic.StoreInt64((*int64)(r), 0)
}
func validateID(id string) string {
if !strings.HasPrefix(id, "/") {
return fmt.Sprintf("/%s", id)
}
return id
}
func trimRootPath(id string) string {
if strings.HasPrefix(id, "/") {
return strings.TrimPrefix(id, "/")
}
return id
}
func deadline(timeout time.Duration, work func(chan bool) error) error {
result := make(chan error)
timer := time.After(timeout)
stopChannel := make(chan bool, 1)
// allow the method to attempt
go func() {
result <- work(stopChannel)
}()
for {
select {
case err := <-result:
return err
case <-timer:
stopChannel <- true
return ErrTimeoutError
}
}
}
func getInterfaceAddress(name string) (string, error) {
interfaces, err := net.Interfaces()
if err != nil {
return "", err
}
for _, iface := range interfaces {
// step: get only the interface we're interested in
if iface.Name == name {
addrs, err := iface.Addrs()
if err != nil {
return "", err
}
// step: return the first address
if len(addrs) > 0 {
return parseIPAddr(addrs[0]), nil
}
}
}
return "", errors.New("Unable to determine or find the interface")
}
func contains(elements []string, value string) bool {
for _, element := range elements {
if element == value {
return true
}
}
return false
}
func parseIPAddr(addr net.Addr) string {
return strings.SplitN(addr.String(), "/", 2)[0]
}
// addOptions adds the parameters in opt as URL query parameters to s.
// opt must be a struct whose fields may contain "url" tags.
func addOptions(s string, opt interface{}) (string, error) {
v := reflect.ValueOf(opt)
if v.Kind() == reflect.Ptr && v.IsNil() {
return s, nil
}
u, err := url.Parse(s)
if err != nil {
return s, err
}
qs, err := query.Values(opt)
if err != nil {
return s, err
}
u.RawQuery = qs.Encode()
return u.String(), nil
}
// Bool returns a pointer to the passed in bool value
func Bool(b bool) *bool {
return &b
}