forked from signal18/replication-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharbitrator.go
225 lines (196 loc) · 5.44 KB
/
arbitrator.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
// +build arbitrator
// replication-manager - Replication Manager Monitoring and CLI for MariaDB and MySQL
// Author: Stephane Varoqui <stephane@mariadb.com>
// License: GNU General Public License, version 3. Redistribution/Reuse of this code is permitted under the GNU v3 license, as an additional term ALL code must carry the original Author(s) credit in comment form.
// See LICENSE in this directory for the integral text.
package main
import (
"encoding/json"
"io"
"io/ioutil"
"net/http"
"strconv"
"github.com/gorilla/mux"
_ "github.com/mattn/go-sqlite3"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/signal18/replication-manager/cluster"
"github.com/signal18/replication-manager/dbhelper"
)
type route struct {
Name string
Method string
Pattern string
HandlerFunc http.HandlerFunc
}
type routes []route
func newRouter() *mux.Router {
router := mux.NewRouter().StrictSlash(true)
for _, r := range rs {
router.
Methods(r.Method).
Path(r.Pattern).
Name(r.Name).
Handler(r.HandlerFunc)
}
return router
}
var rs = routes{
route{
"Heartbeat",
"POST",
"/heartbeat",
handlerHeartbeat,
},
route{
"Arbitrator",
"POST",
"/arbitrator",
handlerArbitrator,
},
route{
"Forget",
"PST",
"/forget/",
handlerForget,
},
}
type response struct {
Arbitration string `json:"arbitration"`
ElectedMaster string `json:"master"`
}
var (
arbitratorPort int
)
func init() {
cobra.OnInitialize(initConfig)
rootCmd.AddCommand(arbitratorCmd)
arbitratorCmd.Flags().IntVar(&arbitratorPort, "arbitrator-port", 8080, "Arbitrator API port")
}
var arbitratorCmd = &cobra.Command{
Use: "arbitrator",
Short: "Arbitrator environment",
Long: `The arbitrator is used for false positive detection`,
Run: func(cmd *cobra.Command, args []string) {
currentCluster := new(cluster.Cluster)
var err error
db, err := currentCluster.InitAgent(confs["arbitrator"])
if err != nil {
panic(err)
}
currentCluster.SetLogStdout()
err = dbhelper.SetHeartbeatTable(db)
if err != nil {
log.WithError(err).Error("Error creating tables")
}
router := newRouter()
log.Infof("Arbitrator listening on port %d", arbitratorPort)
log.Fatal(http.ListenAndServe("0.0.0.0:"+strconv.Itoa(arbitratorPort), router))
},
}
func handlerArbitrator(w http.ResponseWriter, r *http.Request) {
var h heartbeat
body, err := ioutil.ReadAll(io.LimitReader(r.Body, 1048576))
if err != nil {
panic(err)
}
if err := r.Body.Close(); err != nil {
panic(err)
}
log.Info("Arbitration request received: ", string(body))
if err := json.Unmarshal(body, &h); err != nil {
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(422) // unprocessable entity
if err = json.NewEncoder(w).Encode(err); err != nil {
panic(err)
}
}
var send response
//currentCluster := new(cluster.Cluster)
db, err := dbhelper.MemDBConnect()
defer db.Close()
res := dbhelper.RequestArbitration(db, h.UUID, h.Secret, h.Cluster, h.Master, h.UID, h.Hosts, h.Failed)
electedmaster := dbhelper.GetArbitrationMaster(db, h.Secret, h.Cluster)
if res {
send.Arbitration = "winner"
send.ElectedMaster = electedmaster
} else {
send.Arbitration = "looser"
send.ElectedMaster = electedmaster
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(http.StatusCreated)
if err := json.NewEncoder(w).Encode(send); err != nil {
panic(err)
}
}
func handlerHeartbeat(w http.ResponseWriter, r *http.Request) {
var h heartbeat
body, err := ioutil.ReadAll(io.LimitReader(r.Body, 1048576))
if err != nil {
panic(err)
}
//log.Printf("INFO: Hearbeat receive:%s", string(body))
if err := r.Body.Close(); err != nil {
panic(err)
}
if err := json.Unmarshal(body, &h); err != nil {
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(422) // unprocessable entity
if err = json.NewEncoder(w).Encode(err); err != nil {
panic(err)
}
return
}
currentCluster := new(cluster.Cluster)
var send string
db, err := dbhelper.MemDBConnect()
if err != nil {
currentCluster.LogPrintf("ERROR", "Error opening arbitrator database: %s", err)
}
defer db.Close()
res := dbhelper.WriteHeartbeat(db, h.UUID, h.Secret, h.Cluster, h.Master, h.UID, h.Hosts, h.Failed)
if res == nil {
send = `{"heartbeat":"succed"}`
} else {
log.Error("Error writing heartbeat, reason: ", res)
send = `{"heartbeat":"failed"}`
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
if err := json.NewEncoder(w).Encode(send); err != nil {
panic(err)
}
}
func handlerForget(w http.ResponseWriter, r *http.Request) {
var h heartbeat
body, err := ioutil.ReadAll(io.LimitReader(r.Body, 1048576))
if err != nil {
panic(err)
}
//log.Printf("INFO: Hearbeat receive:%s", string(body))
if err = r.Body.Close(); err != nil {
panic(err)
}
if err = json.Unmarshal(body, &h); err != nil {
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(422) // unprocessable entity
if err = json.NewEncoder(w).Encode(err); err != nil {
panic(err)
}
return
}
// currentCluster := new(cluster.Cluster)
var send string
db, err := dbhelper.MemDBConnect()
defer db.Close()
res := dbhelper.ForgetArbitration(db, h.Secret)
if res == nil {
send = `{"heartbeat":"succed"}`
} else {
send = `{"heartbeat":"failed"}`
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
if err := json.NewEncoder(w).Encode(send); err != nil {
panic(err)
}
}