-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_server.go
199 lines (163 loc) · 4.95 KB
/
admin_server.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
/*
Copyright 2017 Turbine Labs, Inc.
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 adminserver
//go:generate mockgen -source $GOFILE -destination mock_$GOFILE -package $GOPACKAGE
import (
"errors"
"fmt"
"net"
"net/http"
"sync"
"time"
"github.com/turbinelabs/nonstdlib/proc"
)
type RequestedSignalType int
const (
NoRequestedSignal RequestedSignalType = iota
RequestedKillSignal
RequestedQuitSignal
RequestedHangupSignal
)
// AdminServer is an HTTP server that wraps a process. The admin
// server can send signals to the process. The server terminates when
// the wrapped process terminates. The server responds to the following
// URI paths:
// /admin/reload
// /admin/quit
// /admin/kill
type AdminServer interface {
// Starts the HTTP server.
Start() error
// Stops the HTTP server.
Close() error
// If true, the HTTP server is up and listening for connections.
Listening() bool
// The host:port the HTTP server is listening on.
Addr() string
// The last signal sent to the process, if any.
LastRequestedSignal() RequestedSignalType
}
type adminServer struct {
lastRequestedSignal RequestedSignalType
managedProc proc.ManagedProc
listener net.Listener
server *http.Server
closeMutex sync.Mutex
}
// Creates a new AdminServer on the given IP address and port,
// wrapping the given ManagedProc.
func New(addr string, managedProc proc.ManagedProc) AdminServer {
adminServer := &adminServer{
lastRequestedSignal: NoRequestedSignal,
managedProc: managedProc,
}
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" {
w.Write([]byte("404\n"))
}
switch r.URL.String() {
case "/admin/kill":
adminServer.kill(w, r)
case "/admin/quit":
adminServer.quit(w, r)
case "/admin/reload":
adminServer.reload(w, r)
default:
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("NOT FOUND\n"))
}
})
adminServer.server = &http.Server{
Addr: addr,
Handler: handler,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
}
return adminServer
}
func (adminServer *adminServer) Addr() string {
if !adminServer.Listening() {
return ""
}
return adminServer.listener.Addr().String()
}
func (adminServer *adminServer) Listening() bool {
return adminServer.listener != nil
}
func (adminServer *adminServer) Start() error {
// As much as possible, prevent Close() from occurring while
// adminServer is starting.
adminServer.closeMutex.Lock()
// Unlock the mutex once: either at return or just before the
// blocking call to Serve.
var unlockOnce sync.Once
defer func() {
unlockOnce.Do(adminServer.closeMutex.Unlock)
}()
if adminServer.server == nil {
return errors.New("already closed")
}
l, err := net.Listen("tcp", adminServer.server.Addr)
if err != nil {
return err
}
adminServer.listener = l
unlockOnce.Do(adminServer.closeMutex.Unlock)
return adminServer.server.Serve(l)
}
func (adminServer *adminServer) Close() error {
adminServer.closeMutex.Lock()
defer func() {
adminServer.server = nil
adminServer.closeMutex.Unlock()
}()
l := adminServer.listener
if l == nil {
return nil
}
adminServer.listener = nil
return l.Close()
}
func (adminServer *adminServer) LastRequestedSignal() RequestedSignalType {
return adminServer.lastRequestedSignal
}
func (adminServer *adminServer) kill(w http.ResponseWriter, request *http.Request) {
adminServer.lastRequestedSignal = RequestedKillSignal
w.Header().Set("Content-Type", "text/plain")
if err := adminServer.managedProc.Kill(); err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(fmt.Sprintf("FAILED: %s\n", err.Error())))
} else {
w.Write([]byte("OK\n"))
}
}
func (adminServer *adminServer) quit(w http.ResponseWriter, request *http.Request) {
adminServer.lastRequestedSignal = RequestedQuitSignal
w.Header().Set("Content-Type", "text/plain")
if err := adminServer.managedProc.Quit(); err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(fmt.Sprintf("FAILED: %s\n", err.Error())))
} else {
w.Write([]byte("OK\n"))
}
}
func (adminServer *adminServer) reload(w http.ResponseWriter, request *http.Request) {
adminServer.lastRequestedSignal = RequestedHangupSignal
w.Header().Set("Content-Type", "text/plain")
if err := adminServer.managedProc.Hangup(); err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(fmt.Sprintf("FAILED: %s\n", err.Error())))
} else {
w.Write([]byte("OK\n"))
}
}