forked from equinor/flotilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMqttEventHandler.cs
260 lines (238 loc) · 9.12 KB
/
MqttEventHandler.cs
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
using Api.Database.Models;
using Api.Mqtt;
using Api.Mqtt.Events;
using Api.Mqtt.MessageModels;
using Api.Services;
using Api.Utilities;
namespace Api.EventHandlers
{
/// <summary>
/// A background service which listens to events and performs callback functions.
/// </summary>
public class MqttEventHandler : EventHandlerBase
{
private readonly ILogger<MqttEventHandler> _logger;
private readonly IServiceScopeFactory _scopeFactory;
private IMissionService MissionService =>
_scopeFactory.CreateScope().ServiceProvider.GetRequiredService<IMissionService>();
private IRobotService RobotService =>
_scopeFactory.CreateScope().ServiceProvider.GetRequiredService<IRobotService>();
public MqttEventHandler(ILogger<MqttEventHandler> logger, IServiceScopeFactory scopeFactory)
{
_logger = logger;
// Reason for using factory: https://www.thecodebuzz.com/using-dbcontext-instance-in-ihostedservice/
_scopeFactory = scopeFactory;
Subscribe();
}
public override void Subscribe()
{
MqttService.MqttIsarConnectReceived += OnIsarConnect;
MqttService.MqttIsarMissionReceived += OnMissionUpdate;
MqttService.MqttIsarTaskReceived += OnTaskUpdate;
MqttService.MqttIsarStepReceived += OnStepUpdate;
MqttService.MqttIsarBatteryReceived += OnBatteryUpdate;
MqttService.MqttIsarPoseReceived += OnPoseUpdate;
}
public override void Unsubscribe()
{
MqttService.MqttIsarConnectReceived -= OnIsarConnect;
MqttService.MqttIsarMissionReceived -= OnMissionUpdate;
MqttService.MqttIsarTaskReceived -= OnTaskUpdate;
MqttService.MqttIsarStepReceived -= OnStepUpdate;
MqttService.MqttIsarBatteryReceived -= OnBatteryUpdate;
MqttService.MqttIsarPoseReceived -= OnPoseUpdate;
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
await stoppingToken;
}
private async void OnIsarConnect(object? sender, MqttReceivedArgs mqttArgs)
{
var isarRobot = (IsarConnectMessage)mqttArgs.Message;
var robot = await RobotService.ReadByName(isarRobot.RobotId);
if (robot == null)
{
_logger.LogError(
"ISAR instance for robot {name} connected. Could not find robot {name} in the database.",
isarRobot.RobotId,
isarRobot.RobotId
);
return;
}
else
{
robot.Host = isarRobot.Host;
robot.Port = isarRobot.Port;
robot.Enabled = true;
await RobotService.Update(robot);
_logger.LogInformation(
"ISAR instance for robot {name} with id {id} is connected. Robot is enabled and host ({host}) and port ({port}) is updated.",
isarRobot.RobotId,
robot.Id,
isarRobot.Host,
isarRobot.Port
);
}
}
private async void OnMissionUpdate(object? sender, MqttReceivedArgs mqttArgs)
{
var mission = (IsarMissionMessage)mqttArgs.Message;
MissionStatus status;
try
{
status = Mission.MissionStatusFromString(mission.Status);
}
catch (ArgumentException e)
{
_logger.LogError(
e,
"Failed to parse mission status from MQTT message. Mission: '{id}' was not updated.",
mission.MissionId
);
return;
}
bool success = await MissionService.UpdateMissionStatusByIsarMissionId(
mission.MissionId,
status
);
if (success)
_logger.LogInformation(
"{time} - Mission '{id}' status updated to '{status}' for robot '{robot}'",
mission.Timestamp,
mission.MissionId,
mission.Status,
mission.RobotId
);
var robot = await RobotService.ReadByName(mission.RobotId);
if (robot is null)
{
_logger.LogError(
"Could not find robot with name {id}. The robot status is not updated.",
mission.RobotId
);
return;
}
if (status == MissionStatus.Ongoing)
{
robot.Status = RobotStatus.Busy;
await RobotService.Update(robot);
_logger.LogInformation(
"Mission with ISAR mission id '{id}' is started by the robot '{name}'. Robot status set to '{status}'.",
mission.MissionId,
mission.RobotId,
robot.Status
);
}
else
{
robot.Status = RobotStatus.Available;
await RobotService.Update(robot);
_logger.LogInformation(
"Mission with ISAR mission id '{id}' is completed by the robot '{name}'. Robot status set to '{status}'.",
mission.MissionId,
mission.RobotId,
robot.Status
);
}
}
private async void OnTaskUpdate(object? sender, MqttReceivedArgs mqttArgs)
{
var task = (IsarTaskMessage)mqttArgs.Message;
IsarTaskStatus status;
try
{
status = IsarTaskStatusMethods.FromString(task.Status);
}
catch (ArgumentException e)
{
_logger.LogError(
e,
"Failed to parse mission status from MQTT message. Report: {id} was not updated.",
task.MissionId
);
return;
}
bool success = await MissionService.UpdateTaskStatusByIsarTaskId(
task.MissionId,
task.TaskId,
status
);
if (success)
_logger.LogInformation(
"{time} - Task {id} updated to {status} for {robot}",
task.Timestamp,
task.TaskId,
task.Status,
task.RobotId
);
}
private async void OnStepUpdate(object? sender, MqttReceivedArgs mqttArgs)
{
var step = (IsarStepMessage)mqttArgs.Message;
IsarStep.IsarStepStatus status;
try
{
status = IsarStep.StatusFromString(step.Status);
}
catch (ArgumentException e)
{
_logger.LogError(
e,
"Failed to parse mission status from MQTT message. Report: {id} was not updated.",
step.MissionId
);
return;
}
bool success = await MissionService.UpdateStepStatusByIsarStepId(
step.MissionId,
step.TaskId,
step.StepId,
status
);
if (success)
_logger.LogInformation(
"{time} - Step {id} updated to {status} for {robot}",
step.Timestamp,
step.StepId,
step.Status,
step.RobotId
);
}
private async void OnBatteryUpdate(object? sender, MqttReceivedArgs mqttArgs)
{
var batteryStatus = (IsarBatteryMessage)mqttArgs.Message;
var robot = await RobotService.ReadByName(batteryStatus.RobotId);
if (robot == null)
{
_logger.LogWarning(
"Could not find corresponding robot for battery update with ID {id} ",
batteryStatus.RobotId
);
}
else
{
robot.BatteryLevel = batteryStatus.BatteryLevel;
await RobotService.Update(robot);
_logger.LogDebug("Updated battery on robot {name} ", robot.Name);
}
}
private async void OnPoseUpdate(object? sender, MqttReceivedArgs mqttArgs)
{
var poseStatus = (IsarPoseMessage)mqttArgs.Message;
var robot = await RobotService.ReadByName(poseStatus.RobotId);
if (robot == null)
{
_logger.LogWarning(
"Could not find corresponding robot for pose update with ID {id} ",
poseStatus.RobotId
);
}
else
{
poseStatus.Pose.CopyIsarPoseToRobotPose(robot.Pose);
await RobotService.Update(robot);
_logger.LogDebug("Updated pose on robot {name} ", robot.Name);
}
}
}
}