-
Notifications
You must be signed in to change notification settings - Fork 51
/
sources.go
240 lines (198 loc) · 6.81 KB
/
sources.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
package conf
import (
"errors"
"fmt"
"os"
"strings"
)
var (
// ErrHelpWanted provides an indication help was requested.
ErrHelpWanted = errors.New("help wanted")
// errVersionWanted provides an indication version was requested.
errVersionWanted = errors.New("version wanted")
)
// sourcer provides the ability to source data from a configuration source.
// Consider the use of lazy-loading for sourcing large datasets or systems.
type sourcer interface {
// Source takes the field key and attempts to locate that key in its
// configuration data. Returns true if found with the value.
Source(fld Field) (string, bool)
}
// =============================================================================
// Environment Variable Sourcer
// env is a source for environmental variables.
type env struct {
m map[string]string
}
// newSourceEnv accepts a namespace and parses the environment into a Env for
// use by the configuration package.
func newSourceEnv(namespace string) *env {
m := make(map[string]string)
// Create the uppercase version to meet the standard {NAMESPACE_} format.
// If the namespace is empty, remove the _ from the beginning of the string.
uspace := fmt.Sprintf("%s_", strings.ToUpper(namespace))
if namespace == "" {
uspace = uspace[1:]
}
// Loop and match each variable using the uppercase namespace.
for _, val := range os.Environ() {
if !strings.HasPrefix(val, uspace) {
continue
}
idx := strings.Index(val, "=")
m[strings.ToUpper(strings.TrimPrefix(val[0:idx], uspace))] = val[idx+1:]
}
return &env{m: m}
}
// Source implements the confg.Sourcer interface. It returns the stringfied value
// stored at the specified key from the environment.
func (e *env) Source(fld Field) (string, bool) {
k := strings.ToUpper(strings.Join(fld.EnvKey, `_`))
v, ok := e.m[k]
return v, ok
}
// envUsage constructs a usage string for the environment variable.
func envUsage(namespace string, fld Field) string {
uspace := strings.ToUpper(namespace) + "_" + strings.ToUpper(strings.Join(fld.EnvKey, `_`))
if namespace == "" {
uspace = uspace[1:]
}
return "$" + uspace
}
// =============================================================================
// Command Line Flag Sourcer
type flagValue struct {
HasValue bool
Value string
}
// flag is a source for command line arguments.
type flag struct {
m map[string]flagValue
args []string
}
// newSourceFlag parsing a string of command line arguments. NewFlag will return
// errHelpWanted, if the help flag is identifyed. This code is adapted
// from the Go standard library flag package.
func newSourceFlag(args []string) (*flag, error) {
m := make(map[string]flagValue)
if len(args) != 0 {
for {
if len(args) == 0 {
break
}
// Look at the next arg.
s := args[0]
// If it's too short or doesn't begin with a `-`, assume we're at
// the end of the flags.
if len(s) < 2 || s[0] != '-' {
break
}
numMinuses := 1
if s[1] == '-' {
numMinuses++
if len(s) == 2 { // "--" terminates the flags
args = args[1:]
break
}
}
name := s[numMinuses:]
if len(name) == 0 || name[0] == '-' || name[0] == '=' {
return nil, fmt.Errorf("bad flag syntax: %s", s)
}
// It's a flag. Does it have an argument?
args = args[1:]
hasValue := false
value := ""
for i := 1; i < len(name); i++ { // equals cannot be first
if name[i] == '=' {
value = name[i+1:]
hasValue = true
name = name[0:i]
break
}
}
if name == "help" || name == "h" || name == "?" {
return nil, ErrHelpWanted
}
if name == "version" || name == "v" {
return nil, errVersionWanted
}
// If we don't have a value yet, it's possible the flag was not in the
// -flag=value format which means it might still have a value which would be
// the next argument, provided the next argument isn't a flag.
if !hasValue {
if len(args) > 0 && len(args[0]) > 0 && args[0][0] != '-' {
// Doesn't look like a flag. Must be a value.
value, args = args[0], args[1:]
}
}
// Store the flag/value pair.
m[name] = flagValue{
HasValue: hasValue,
Value: value,
}
}
}
return &flag{m: m, args: args}, nil
}
// source returns the stringfied value stored at the specified key with special handling for bool flags.
func (f *flag) source(key string, isBool bool) (string, bool) {
k := strings.ToLower(key)
val, found := f.m[k]
if !found || !isBool {
return val.Value, found
}
if val.HasValue {
return val.Value, found
}
// bools are defaulted to true if the flag was present.
if val.Value != "" {
f.args = append([]string{val.Value}, f.args...)
}
return "true", found
}
// Source implements the confg.Sourcer interface. Returns the stringfied value
// stored at the specified key from the flag source.
func (f *flag) Source(fld Field) (string, bool) {
if fld.Options.ShortFlagChar != 0 {
if val, found := f.source(string(fld.Options.ShortFlagChar), fld.BoolField); found {
return val, found
}
}
return f.source(strings.Join(fld.FlagKey, `-`), fld.BoolField)
}
// flagUsage constructs a usage string for the flag argument.
func flagUsage(fld Field) string {
usage := "--" + strings.ToLower(strings.Join(fld.FlagKey, `-`))
if fld.Options.ShortFlagChar != 0 {
flagKey := []string{string(fld.Options.ShortFlagChar)}
usage += "/-" + strings.ToLower(strings.Join(flagKey, `-`))
}
return usage
}
/*
Portions Copyright (c) 2009 The Go Authors. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/