-
Notifications
You must be signed in to change notification settings - Fork 3
/
miniconfd.go
192 lines (155 loc) · 4.28 KB
/
miniconfd.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
// Copyright 2018 The OpenPitrix Authors. All rights reserved.
// Use of this source code is governed by a Apache license
// that can be found in the LICENSE file.
package main
import (
"flag"
"fmt"
"os"
"github.com/urfave/cli"
"openpitrix.io/libconfd"
_ "openpitrix.io/libconfd/etcdv3/backend"
)
func main() {
app := cli.NewApp()
app.Name = "miniconfd"
app.Usage = "miniconfd is simple confd, only support toml/etcd backend."
app.Version = "0.1.0"
app.UsageText = `miniconfd [global options] command [options] [args...]
EXAMPLE:
miniconfd list
miniconfd info
miniconfd make target
miniconfd getv key
miniconfd tour
miniconfd run`
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "config",
Value: "confd.toml",
Usage: "miniconfd config file",
EnvVar: "MINICONFD_CONFILE_FILE",
},
cli.StringFlag{
Name: "backend-config",
Value: "confd-backend.toml",
Usage: "miniconfd backend config file",
EnvVar: "MINICONFD_BACKEND_CONFILE_FILE",
},
}
app.Before = func(context *cli.Context) error {
flag.Parse()
return nil
}
app.Commands = []cli.Command{
{
Name: "list",
Usage: "list enabled template resource",
ArgsUsage: "[regexp]",
Action: func(c *cli.Context) {
cfg := libconfd.MustLoadConfig(c.GlobalString("config"))
backendConfig := libconfd.MustLoadBackendConfig(c.GlobalString("backend-config"))
backendClient := libconfd.MustNewBackendClient(backendConfig)
libconfd.NewApplication(cfg, backendClient).List(c.Args().First())
return
},
},
{
Name: "info",
Usage: "show template resource info",
ArgsUsage: "[name...]",
Action: func(c *cli.Context) {
cfg := libconfd.MustLoadConfig(c.GlobalString("config"))
backendConfig := libconfd.MustLoadBackendConfig(c.GlobalString("backend-config"))
backendClient := libconfd.MustNewBackendClient(backendConfig)
libconfd.NewApplication(cfg, backendClient).Info(c.Args()...)
return
},
},
{
Name: "make",
Usage: "make template target, not run any command",
ArgsUsage: "[target...]",
Action: func(c *cli.Context) {
cfg := libconfd.MustLoadConfig(c.GlobalString("config"))
backendConfig := libconfd.MustLoadBackendConfig(c.GlobalString("backend-config"))
backendClient := libconfd.MustNewBackendClient(backendConfig)
libconfd.NewApplication(cfg, backendClient).Make(c.Args()...)
return
},
},
{
Name: "getv",
Usage: "get values from backend by keys",
ArgsUsage: "key",
Action: func(c *cli.Context) {
cfg := libconfd.MustLoadConfig(c.GlobalString("config"))
backendConfig := libconfd.MustLoadBackendConfig(c.GlobalString("backend-config"))
backendClient := libconfd.MustNewBackendClient(backendConfig)
libconfd.NewApplication(cfg, backendClient).GetValues(c.Args()...)
return
},
},
{
Name: "tour",
Usage: "show more examples",
Action: func(c *cli.Context) {
fmt.Println(tourTopic)
},
},
{
Name: "run",
Usage: "run confd service",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "once",
Usage: "run with onetime flag",
},
cli.BoolFlag{
Name: "noop",
Usage: "run with noop flag",
},
cli.BoolFlag{
Name: "watch",
Usage: "run with watch mode",
},
},
Action: func(c *cli.Context) {
cfg := libconfd.MustLoadConfig(c.GlobalString("config"))
backendConfig := libconfd.MustLoadBackendConfig(c.GlobalString("backend-config"))
backendClient := libconfd.MustNewBackendClient(backendConfig)
libconfd.NewApplication(cfg, backendClient).Run(
func(cfg *libconfd.Config) {
cfg.Onetime = c.Bool("once")
},
func(cfg *libconfd.Config) {
cfg.Noop = c.Bool("noop")
},
func(cfg *libconfd.Config) {
cfg.Watch = c.Bool("watch")
},
)
return
},
},
}
app.CommandNotFound = func(ctx *cli.Context, command string) {
fmt.Fprintf(ctx.App.Writer, "not found '%v'!\n", command)
}
app.Run(os.Args)
}
const tourTopic = `
miniconfd list
miniconfd info simple
miniconfd make simple
miniconfd make simple.windows
miniconfd getv /
miniconfd getv /key
miniconfd getv / /key
miniconfd run
miniconfd run -once
miniconfd run -noop
miniconfd run -once -noop
GOOS=windows miniconfd list
LIBCONFD_GOOS=windows miniconfd list
`