forked from AlexMarco7/aclow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaclow.go
278 lines (231 loc) · 5.45 KB
/
aclow.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package aclow
import (
"fmt"
"log"
"net/url"
"sync"
"time"
"github.com/google/uuid"
server "github.com/nats-io/gnatsd/server"
nats "github.com/nats-io/go-nats"
)
type StartOptions struct {
Local bool
Debug bool
Host string
Port int
ClusterPort int
ClusterRoutes []*url.URL
}
type Caller = func(a string, d Message) (Message, error)
type Node interface {
Address() []string
Start(app *App)
Execute(msg Message, call Caller) (Message, error)
}
type App struct {
opt StartOptions
Conn *nats.EncodedConn
Config map[string]interface{}
Resources map[string]interface{}
NodeMap map[string]Node
Logger Logger
}
type Message struct {
Header map[string]interface{}
Body interface{}
}
type ReplyMessage struct {
Message
Err error
}
func (a *App) Start(opt StartOptions) {
a.opt = opt
a.Config = make(map[string]interface{})
a.Resources = make(map[string]interface{})
a.NodeMap = make(map[string]Node)
a.Logger.start()
if !opt.Local {
a.startServer()
a.startClient()
}
}
func (a *App) Wait() {
wg := &sync.WaitGroup{}
wg.Add(1)
wg.Wait()
}
func (a *App) startServer() {
server := server.New(&server.Options{
Host: a.opt.Host,
Port: a.opt.Port,
Routes: a.opt.ClusterRoutes,
Cluster: server.ClusterOpts{
Port: a.opt.ClusterPort,
},
})
go server.Start()
time.Sleep(time.Second * 1)
}
func (a *App) startClient() {
nc, err := nats.Connect(fmt.Sprintf("localhost:%d", a.opt.Port))
a.Conn, _ = nats.NewEncodedConn(nc, nats.GOB_ENCODER)
if err != nil {
log.Fatal(err)
}
}
func (a *App) Publish(address string, msg Message) {
localNode := a.NodeMap[address]
if localNode == nil && !a.opt.Local {
a.Conn.Publish(address, msg)
} else if localNode == nil {
err := fmt.Errorf("Address '%s' not found!", address)
log.Println(err)
} else {
executionID := uuid.New().String()
a.logIt(Log{
logType: "starting-execution",
executionID: executionID,
address: address,
message: msg,
})
reply, err := localNode.Execute(msg, a.makeCaller(address, executionID))
a.logIt(Log{
logType: "ending-execution",
executionID: executionID,
address: address,
message: reply,
err: err,
})
}
}
func (a *App) Call(address string, msg Message) (Message, error) {
var r Message
var err error
localNode := a.NodeMap[address]
if localNode == nil && !a.opt.Local {
replyMsg := ReplyMessage{}
err = a.Conn.Request(address, msg, &replyMsg, time.Second*30)
if replyMsg.Err != nil {
return Message{}, replyMsg.Err
}
r.Body = replyMsg.Body
r.Header = replyMsg.Header
return r, err
} else if localNode == nil {
return Message{}, fmt.Errorf(fmt.Sprintf("Address '%s' not found!", address))
} else {
executionID := uuid.New().String()
a.logIt(Log{
logType: "starting-execution",
executionID: executionID,
address: address,
message: msg,
})
reply, err := localNode.Execute(msg, a.makeCaller(address, executionID))
a.logIt(Log{
logType: "ending-execution",
executionID: executionID,
address: address,
message: reply,
err: err,
})
return reply, err
}
}
func (a *App) RegisterModule(moduleName string, nodes []Node) {
for _, n := range nodes {
//go func(n Node) {
for _, addr := range n.Address() {
nodeAddress := moduleName + "@" + addr
a.NodeMap[nodeAddress] = n
if !a.opt.Local {
_, err := a.Conn.QueueSubscribe(nodeAddress, moduleName, func(_, reply string, msg Message) {
executionID := uuid.New().String()
a.logIt(Log{
logType: "starting-execution",
executionID: executionID,
address: nodeAddress,
message: msg,
})
go func(msg Message) {
caller := a.makeCaller(nodeAddress, executionID)
result, err := n.Execute(msg, caller)
a.logIt(Log{
logType: "ending-execution",
executionID: executionID,
address: nodeAddress,
message: result,
err: err,
})
if err != nil {
if reply != "" {
a.Conn.Publish(reply, ReplyMessage{Err: err})
}
} else if reply != "" {
a.Conn.Publish(reply, result)
}
}(msg)
})
if err != nil {
println(err.Error)
}
}
}
go n.Start(a)
//}(n)
}
}
func (a *App) makeCaller(fromAddress string, executionID string) Caller {
return func(address string, m Message) (Message, error) {
a.logIt(Log{
logType: "starting-call",
executionID: executionID,
executionAddress: fromAddress,
address: address,
message: m,
})
reply, err := a.Call(address, m)
//log.Println(err)
a.logIt(Log{
logType: "receiving-call-response",
executionID: executionID,
executionAddress: fromAddress,
address: address,
message: reply,
err: err,
})
return reply, err
}
}
func (a *App) logIt(logMsg Log) {
if a.opt.Debug {
a.Logger.logIt(logMsg)
}
}
func BodyAsString(r Message, err error) string {
check(err)
return r.Body.(string)
}
func BodyAsFloat64(r Message, err error) float64 {
check(err)
return r.Body.(float64)
}
func BodyAsInt64(r Message, err error) int64 {
check(err)
return r.Body.(int64)
}
func BodyAsBool(r Message, err error) bool {
check(err)
return r.Body.(bool)
}
func Body(r Message, err error) interface{} {
check(err)
return r.Body
}
func check(err error) {
if err != nil {
log.Panic(err)
}
}
type Tuple []interface{}