internal/cli/agent.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
package cli
import (
"flag"
"fmt"
"log"
"os"
"os/signal"
"strings"
"syscall"
"time"
"git.j3s.sh/cascade/internal/agent"
)
type agentCommand struct {
// gracefulTimeout controls how long we wait before forcefully terminating
// note that this value interacts with serf's LeavePropagateDelay config
gracefulTimeout time.Duration
flagBindDNS string
flagBindHTTP string
flagBindSerf string
flagJoin string
flagNode string
}
func (c *agentCommand) Usage() {
fmt.Print(
`usage: cascade agent [flags]
this command starts the cascade agent, which is responsible
for basically everything, including service registration,
health checking, cluster membership, and hosting the API.
flags:
-bind-dns=<addr>
address the DNS server binds to (default = 127.0.0.1:8600)
-bind-http=<addr>
address the http api/interace binds to (default = 127.0.0.1:8500)
-bind-serf=<addr>
address the serf agent binds to (default = 0.0.0.0:8301)
-join=<addrs>
comma-separated address of agents to join at start time (default = nil)
-node=<name>
name of this node, must be globally unique (default = hostname)
`)
}
func (c *agentCommand) Init(args []string) agentCommand {
c.gracefulTimeout = 10 * time.Second
flags := flag.NewFlagSet("", flag.ContinueOnError)
flags.Usage = c.Usage
flags.StringVar(&c.flagBindDNS, "bind-dns", "", "")
flags.StringVar(&c.flagBindHTTP, "bind-http", "", "")
flags.StringVar(&c.flagBindSerf, "bind-serf", "", "")
flags.StringVar(&c.flagJoin, "join", "", "")
flags.StringVar(&c.flagNode, "node", "", "")
if err := flags.Parse(args); err != nil {
fmt.Println(err)
os.Exit(1)
}
return *c
}
func RunAgent(args []string) {
c := agentCommand{}
c.Init(args)
config, err := c.getAgentConfig()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
agent := agent.New(config)
fmt.Printf("-> starting cascade agent\n")
fmt.Printf(" node '%s'\n", config.NodeName)
if len(config.StartJoin) > 0 {
fmt.Printf(" join '%s'\n", config.StartJoin)
}
fmt.Printf(" bind addrs:\n")
fmt.Printf(" dns '%s'\n", config.DNSBindAddr)
fmt.Printf(" http '%s'\n", config.HTTPBindAddr)
fmt.Printf(" serf '%s'\n", config.SerfBindAddr)
fmt.Printf("\n-> logs\n")
if err := agent.Start(); err != nil {
fmt.Println(err)
os.Exit(1)
}
defer agent.Shutdown()
if err := c.startupJoin(agent); err != nil {
fmt.Println(err)
os.Exit(1)
}
if err := c.handleSignals(agent); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
// handleSignals blocks until we get an exit-causing signal
func (c agentCommand) handleSignals(agent *agent.Agent) error {
signalCh := make(chan os.Signal, 4)
signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM)
// Wait for a signal
var sig os.Signal
select {
case s := <-signalCh:
sig = s
case <-agent.ShutdownCh():
// Agent is already shutdown!
return nil
}
fmt.Fprintf(os.Stderr, "caught signal %s", sig)
// Check if we should do a graceful leave
graceful := false
if sig == os.Interrupt || sig == syscall.SIGTERM {
graceful = true
}
// Bail fast if not doing a graceful leave
if !graceful {
fmt.Fprintf(os.Stderr, "leave cluster with zero grace")
return nil
}
// Attempt a graceful leave
gracefulCh := make(chan struct{})
fmt.Printf("shutting down gracefully")
go func() {
if err := agent.Leave(); err != nil {
fmt.Println("Error: ", err)
return
}
close(gracefulCh)
}()
// Wait for leave or another signal
select {
case <-signalCh:
return fmt.Errorf("idfk")
case <-time.After(c.gracefulTimeout):
return fmt.Errorf("leave timed out")
case <-gracefulCh:
return nil
}
}
func (c agentCommand) startupJoin(a *agent.Agent) error {
if len(a.Config.StartJoin) == 0 {
return nil
}
n, err := a.Join(a.Config.StartJoin)
if err != nil {
return err
}
if n > 0 {
log.Printf("issue join request nodes=%d\n", n)
}
return nil
}
// getAgentConfig takes a default agent config and modifies it based
// on user specified flags. It also does some a little input validation.
func (c agentCommand) getAgentConfig() (*agent.Config, error) {
config := agent.DefaultConfig()
if c.flagBindDNS != "" {
if err := parseFlagAddress(c.flagBindDNS, config.DNSBindAddr); err != nil {
return nil, err
}
}
if c.flagBindHTTP != "" {
if err := parseFlagAddress(c.flagBindHTTP, config.HTTPBindAddr); err != nil {
return nil, err
}
}
if c.flagBindSerf != "" {
if err := parseFlagAddress(c.flagBindSerf, config.SerfBindAddr); err != nil {
return nil, err
}
}
if c.flagJoin != "" {
// TODO: moar validation
config.StartJoin = strings.Split(c.flagJoin, ",")
}
if c.flagNode != "" {
config.NodeName = c.flagNode
}
return config, nil
}