-
Notifications
You must be signed in to change notification settings - Fork 1
/
zmq_function.go
327 lines (291 loc) · 9.43 KB
/
zmq_function.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
package main
import (
"fmt"
"sync"
)
// ZMQComponents Composants enregistrés (Avec ProcessID)
var ZMQComponents map[Component]int
var zmqProcessMutex sync.Mutex
var zmqServerMapMutex sync.Mutex
var zmqServerMap map[ZMQDefinedFunc]interface{}
// MapBoundaries Limite de la carte
var MapBoundaries Boundaries
func init() {
ZMQComponents = make(map[Component]int)
zmqServerMap := make(map[ZMQDefinedFunc]interface{})
MapBoundaries = Boundaries{}
zmqServerMap[ZFNRegister] = ZRegister
zmqServerMap[ZFNDisconnect] = ZDisconnect
zmqServerMap[ZFNDefineBoundaries] = ZDefineBoundaries
zmqServerMap[ZFNSendCoordinates] = ZSendCoordinates
zmqServerMap[ZFNDefineTarget] = ZDefineTarget
zmqServerMap[ZFNOnUpdateAutopilot] = ZOnUpdateAutopilot
zmqServerMap[ZFNOnFlyingStatusUpdate] = ZOnFlyingStatusUpdate
zmqServerMap[ZFNSendCommand] = ZSendCommand
zmqServerMap[ZFNRequestStatusesReply] = ZRequestStatusesReply
//funcMapper["func"].(func(*os.File))(output)
}
func callMappedZMQFunc(msg *ZMQMessage) {
if msg != nil {
if _, ok := zmqServerMap[msg.Function]; !ok {
trace(fmt.Sprintf("%s : %s", callFailure, "Méthode inconnue"))
}
zmqServerMapMutex.Lock()
defer func() {
zmqServerMapMutex.Unlock()
if r := recover(); r != nil {
trace(fmt.Sprintf("%s : %s", callFailure, r))
}
}()
zmqServerMap[msg.Function].(func(*[]interface{}))(&msg.Params)
} else {
trace(fmt.Sprintf("%s : %s", callFailure, "Message reçu malformé"))
}
}
// #region Function Host
const (
// ZFNRegister Anciennement Register (RPC)
ZFNRegister ZMQDefinedFunc = "Register"
// ZFNDisconnect Anciennement Disconnect (RPC)
ZFNDisconnect ZMQDefinedFunc = "Disconnect"
// ZFNDisconnect Anciennement DefineBoundaries (RPC)
ZFNDefineBoundaries ZMQDefinedFunc = "DefineBoundaries"
// ZFNSendCoordinates Anciennement SendCoordinates (RPC)
ZFNSendCoordinates ZMQDefinedFunc = "SendCoordinates"
// ZFNDefineTarget Anciennement DefineTarget (RPC)
ZFNDefineTarget ZMQDefinedFunc = "DefineTarget"
// ZFNOnUpdateAutopilot Anciennement UpdateAutopilot (RPC)
ZFNOnUpdateAutopilot ZMQDefinedFunc = "OnUpdateAutopilot"
// ZFNOnFlyingStatusUpdate Anciennement OnFlyingStatusUpdate (RPC)
ZFNOnFlyingStatusUpdate ZMQDefinedFunc = "OnFlyingStatusUpdate"
// ZFNServerShutdown Anciennement ServerShutdown (RPC)
ZFNServerShutdown ZMQDefinedFunc = "ServerShutdown"
// ZFNSendCommand Anciennement SendCommand (RPC)
ZFNSendCommand ZMQDefinedFunc = "SendCommand"
// ZFNRequestStatusesReply Réponse des services OSM à ZFNRequestStatuses
ZFNRequestStatusesReply ZMQDefinedFunc = "RequestStatusesReply"
)
func addOrUpdateZMQProcess(cpt Component, pid int) {
zmqProcessMutex.Lock()
defer zmqProcessMutex.Unlock()
ZMQComponents[cpt] = pid
}
func deleteZMQProcess(cpt Component) {
zmqProcessMutex.Lock()
defer zmqProcessMutex.Unlock()
delete(ZMQComponents, cpt)
}
// ZRegister Enregistrer le processus ZMQ
func ZRegister(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(Args); len(*params) > 0 && ok {
addOrUpdateZMQProcess(input.Component, input.PId)
trace(fmt.Sprintf("%s : %s", callSuccess, string(input.Component)))
AddOrUpdateStatus(input.Component, true)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// ZDisconnect Désenregistre le process associé à une file ZMQ
func ZDisconnect(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(Args); ok {
deleteZMQProcess(input.Component)
trace(fmt.Sprintf("%s : %s", callSuccess, string(input.Component)))
AddOrUpdateStatus(input.Component, false)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// ZDefineBoundaries Enregistre les limites de la carte
func ZDefineBoundaries(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(Boundaries); ok {
MapBoundaries = input
trace(callSuccess)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// ZSendCoordinates Partage les dernières coordonnées avec les clients Angular / Mobile
func ZSendCoordinates(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(DroneFlightCoordinates); ok {
go SendLastCoordinate(input)
trace(callSuccess)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// ZDefineTarget Partage les coordonnées cibles avec les clients Angular / Mobile
func ZDefineTarget(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(FlightCoordinate); len(*params) > 0 && ok {
go SendTargetCoordinates(input)
trace(callSuccess)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// ZOnUpdateAutopilot Après Mise à jour du pilote auto
func ZOnUpdateAutopilot(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(SchedulerSummarizedData); len(*params) > 0 && ok {
AddOrUpdateAutopilotStatus(input)
go SendAutopilotUpdate(input)
trace(callSuccess)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// ZOnFlyingStatusUpdate Réception des nouvelles infos de vol
func ZOnFlyingStatusUpdate(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(DroneSummarizedStatus); len(*params) > 0 && ok {
AddOrUpdateFlyingStatus(input)
go SendFlyingStatusUpdate(input)
trace(callSuccess)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// ZServerShutdown Indicateur d'arrêt du endpoint / service ZMQ distant
func ZServerShutdown(params *[]interface{}) {
AddOrUpdateStatus(SchedulerRPCServer, false)
}
// ZSendCommand Transmission d'une commande remontée par le service OSM
func ZSendCommand(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(PyAutomaticCommand); len(*params) > 0 && ok {
go SendAutomaticCommand(input)
trace(callSuccess)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// ZRequestStatusesReply Réception des derniers status
func ZRequestStatusesReply(params *[]interface{}) {
if params != nil && len(*params) > 0 {
if input, ok := (*params)[0].(map[Component]bool); len(*params) > 0 && ok {
lastStatuses = input
trace(callSuccess)
} else {
trace(callFailure)
}
} else {
trace(callFailure)
}
}
// #endregion Function Host
// #region Function Client
const (
// ZFNRequestStatuses Anciennement RequestStatuses (RPC)
ZFNRequestStatuses ZMQDefinedFunc = "RequestStatuses"
// ZFNNotifyScheduler Anciennement OnCommandSuccess (RPC)
ZFNNotifyScheduler ZMQDefinedFunc = "OnCommandSuccess"
// ZFNUpdateAutopilot Anciennement UpdateAutopilot (RPC)
ZFNUpdateAutopilot ZMQDefinedFunc = "UpdateAutopilot"
// ZFNOnHomeChanged Anciennement OnHomeChanged (RPC)
ZFNOnHomeChanged ZMQDefinedFunc = "OnHomeChanged"
// ZFNFetchBoundaries Anciennement GetBoundaries (RPC)
ZFNFetchBoundaries ZMQDefinedFunc = "GetBoundaries"
// ZFNUpdateTarget Anciennement UpdateTarget (RPC)
ZFNUpdateTarget ZMQDefinedFunc = "UpdateTarget"
// ZFNUpdateFlyingStatus Anciennement FlyingStatusUpdate (RPC)
ZFNUpdateFlyingStatus ZMQDefinedFunc = "FlyingStatusUpdate"
// ZFNSendGoHomeCommandTo Anciennement SendGoHomeCommandTo (RPC)
ZFNSendGoHomeCommandTo ZMQDefinedFunc = "SendGoHomeCommandTo"
// ZFNSendTakeoffCommandTo Anciennement SendTakeoffCommandTo (RPC)
ZFNSendTakeoffCommandTo ZMQDefinedFunc = "SendTakeoffCommandTo"
// Reply sections - From client
// ZFNRequestStatusReply Fonction réponse de RequestStatuses
ZFNRequestStatusReply ZMQDefinedFunc = "RequestStatusesReply"
)
// ZRequestStatuses Demande d'envoi des derniers status
func ZRequestStatuses() *ZMQMessage {
return &ZMQMessage{
Function: ZFNRequestStatuses,
Params: make([]interface{}, 0),
}
}
// ZNotifyScheduler Notifier le séquenceur OSM
func ZNotifyScheduler(input CommandIdentifier) *ZMQMessage {
return &ZMQMessage{
Function: ZFNNotifyScheduler,
Params: []interface{}{input},
}
}
// ZUpdateAutopilot Demande de MàJ forcée de l'autopilot
func ZUpdateAutopilot(input SchedulerSummarizedData) *ZMQMessage {
return &ZMQMessage{
Function: ZFNNotifyScheduler,
Params: []interface{}{input},
}
}
// ZOnHomeChanged MàJ du point de décollage
func ZOnHomeChanged(input FlightCoordinate) *ZMQMessage {
return &ZMQMessage{
Function: ZFNOnHomeChanged,
Params: []interface{}{input},
}
}
// ZFetchBoundaries Demande les limites de la carte
func ZFetchBoundaries() *ZMQMessage {
return &ZMQMessage{
Function: ZFNFetchBoundaries,
Params: []interface{}{},
}
}
// ZUpdateTarget Envoi des instructions pour recalculer la position sur la route
func ZUpdateTarget(input FlightCoordinate) *ZMQMessage {
return &ZMQMessage{
Function: ZFNUpdateTarget,
Params: []interface{}{input},
}
}
// ZUpdateFlyingStatus mise à jour de l'état du drone (en vol)
func ZUpdateFlyingStatus(input DroneFlyingStatusMessage) *ZMQMessage {
return &ZMQMessage{
Function: ZFNUpdateFlyingStatus,
Params: []interface{}{input},
}
}
// ZSendGoHomeCommandTo Demander une commande "atterrissage" au drone nommé
func ZSendGoHomeCommandTo(input string) *ZMQMessage {
return &ZMQMessage{
Function: ZFNSendGoHomeCommandTo,
Params: []interface{}{input},
}
}
// ZSendTakeoffCommandTo Demander une commande "décollage" au drone nommé
func ZSendTakeoffCommandTo(input string) *ZMQMessage {
return &ZMQMessage{
Function: ZFNSendTakeoffCommandTo,
Params: []interface{}{input},
}
}
// #endregion Function Client