-
Notifications
You must be signed in to change notification settings - Fork 260
/
Copy pathTripManagerOrchestrator.cs
230 lines (198 loc) · 9.2 KB
/
TripManagerOrchestrator.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
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.DurableTask;
using Microsoft.Extensions.Logging;
using ServerlessMicroservices.Models;
using ServerlessMicroservices.Shared.Helpers;
using ServerlessMicroservices.Shared.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace ServerlessMicroservices.FunctionApp.Orchestrators
{
[StorageAccount("AzureWebJobsStorage")]
public static class TripManagerOrchestrator
{
[FunctionName("O_ManageTrip")]
public static async Task<object> ManageTrip(
[OrchestrationTrigger] IDurableOrchestrationContext context,
ILogger log)
{
TripItem trip = context.GetInput<TripItem>();
if (!context.IsReplaying)
log.LogInformation($"ManageTrip {trip.Code} starting.....");
string driverAcceptCode = "Unknown";
try
{
// Find and notify drivers
trip = await context.CallActivityAsync<TripItem>("A_TM_FindNNotifyDrivers", trip);
if (trip.AvailableDrivers.Count == 0)
throw new Exception("No drivers available!!");
// Wait for either a timer or an external event to signal that a driver accepted the trip
using (var cts = new CancellationTokenSource())
{
var timeoutAt = context.CurrentUtcDateTime.AddSeconds(ServiceFactory.GetSettingService().GetDriversAcknowledgeMaxWaitPeriodInSeconds());
var timeoutTask = context.CreateTimer(timeoutAt, cts.Token);
var acknowledgeTask = context.WaitForExternalEvent<string>(Constants.TRIP_DRIVER_ACCEPT_EVENT);
var winner = await Task.WhenAny(acknowledgeTask, timeoutTask);
if (winner == acknowledgeTask)
{
driverAcceptCode = acknowledgeTask.Result;
cts.Cancel(); // we should cancel the timeout task
}
else
{
driverAcceptCode = "Timed Out";
}
}
if (driverAcceptCode == "Timed Out")
throw new Exception($"Did not receive an ack from any driver in {ServiceFactory.GetSettingService().GetDriversAcknowledgeMaxWaitPeriodInSeconds()} seconds!!");
var acceptedDriver = trip.AvailableDrivers.SingleOrDefault(d => d.Code == driverAcceptCode);
if (acceptedDriver == null)
throw new Exception($"Data integrity - received an ack from an invalid driver {driverAcceptCode}!!");
// Assign trip driver
trip = await context.CallActivityAsync<TripItem>("A_TM_AssignTripDriver", new TripInfo
{
Trip = trip,
Driver = acceptedDriver
});
// Notify other drivers that their service is no longer needed
await context.CallActivityAsync("A_TM_NotifyOtherDrivers", trip);
// Notify the passenger that the trip is starting
await context.CallActivityAsync("A_TM_NotifyPassenger", trip);
// Trigger to create a trip monitor orchestrator whose job is to monitor the trip for completion
await context.CallActivityAsync("A_TM_CreateTripMonitor", trip);
}
catch (Exception e)
{
if (!context.IsReplaying)
log.LogInformation($"Caught an error from an activity: {e.Message}");
trip.Error = e.Message;
await context.CallActivityAsync<string>("A_TM_Cleanup", trip);
return new
{
Error = "Failed to process trip",
Message = e.Message
};
}
return new
{
Trip = trip
};
}
[FunctionName("A_TM_FindNNotifyDrivers")]
public static async Task<TripItem> FindNNotifyDrivers([ActivityTrigger] TripItem trip,
ILogger log)
{
log.LogInformation($"FindNNotifyDrivers for {trip.Code} starting....");
List<DriverItem> availableDrivers = new List<DriverItem>();
if (ServiceFactory.GetSettingService().IsPersistDirectly())
{
var persistenceService = ServiceFactory.GetPersistenceService();
availableDrivers = await persistenceService.RetrieveDrivers(trip.Source.Latitude, trip.Source.Longitude, ServiceFactory.GetSettingService().GetDriversLocationRadiusInMiles());
if (availableDrivers.Count > 0)
trip = await persistenceService.AssignTripAvailableDrivers(trip, availableDrivers);
}
else
{
//TODO: Go through the Driver APIs
}
foreach (var driver in availableDrivers)
{
//TODO: Out of scope
}
if (availableDrivers.Count > 0)
await Externalize(trip, Constants.EVG_SUBJECT_TRIP_DRIVERS_NOTIFIED);
return trip;
}
[FunctionName("A_TM_AssignTripDriver")]
public static async Task<TripItem> AssignTripDriver([ActivityTrigger] TripInfo tripInfo,
ILogger log)
{
log.LogInformation($"AssignTripDriver starting....");
var trip = tripInfo.Trip;
if (ServiceFactory.GetSettingService().IsPersistDirectly())
{
var persistenceService = ServiceFactory.GetPersistenceService();
trip = await persistenceService.AssignTripDriver(trip, tripInfo.Driver.Code);
}
else
{
//TODO: Go through the Trips APIs
}
await Externalize(trip, Constants.EVG_SUBJECT_TRIP_DRIVER_PICKED);
return trip;
}
[FunctionName("A_TM_NotifyOtherDrivers")]
public static async Task NotifyOtherDrivers([ActivityTrigger] TripItem trip,
ILogger log)
{
log.LogInformation($"NotifyOtherDrivers starting....");
trip.AvailableDrivers.Remove(trip.Driver);
foreach (var driver in trip.AvailableDrivers)
{
//TODO: Out of scope
}
}
[FunctionName("A_TM_NotifyPassenger")]
public static async Task NotifyPassenger([ActivityTrigger] TripItem trip,
ILogger log)
{
log.LogInformation($"NotifyPassenger starting....");
//TODO: Out of scope
}
// Out does does not work in Async methods!!!
[FunctionName("A_TM_CreateTripMonitor")]
public static void CreateTripMonitor([ActivityTrigger] TripItem trip,
[Queue("%TripMonitorsQueue%", Connection = "AzureWebJobsStorage")] out string queueTripCode,
ILogger log)
{
log.LogInformation($"CreateTripMonitor starting....");
// Enqueue the trip code to be monitored
queueTripCode = trip.Code;
// Send an event telemetry
ServiceFactory.GetLoggerService().Log("Trip monitored", new Dictionary<string, string>
{
{"Code", trip.Code },
{"Passenger", $"{trip.Passenger.FirstName} {trip.Passenger.LastName}" },
{"Destination", $"{trip.Destination.Latitude} - {trip.Destination.Longitude}" },
{"Mode", $"{trip.Type}" }
});
}
[FunctionName("A_TM_Cleanup")]
public static async Task Cleanup([ActivityTrigger] TripItem trip,
ILogger log)
{
log.LogInformation($"Cleanup for {trip.Code} starting....");
if (ServiceFactory.GetSettingService().IsPersistDirectly())
{
var persistenceService = ServiceFactory.GetPersistenceService();
trip = await persistenceService.AbortTrip(trip);
}
else
{
//TODO: Go through the Trips APIs
}
await Externalize(trip, Constants.EVG_SUBJECT_TRIP_ABORTED);
// Send an event telemetry
ServiceFactory.GetLoggerService().Log("Trip aborted", new Dictionary<string, string>
{
{"Code", trip.Code },
{"Passenger", $"{trip.Passenger.FirstName} {trip.Passenger.LastName}" },
{"Destination", $"{trip.Destination.Latitude} - {trip.Destination.Longitude}" },
{"Mode", $"{trip.Type}" }
});
}
// *** PRIVATE ***//
private static async Task Externalize(TripItem trip, string subject)
{
await Utilities.TriggerEventGridTopic<TripItem>(null, trip, Constants.EVG_EVENT_TYPE_MANAGER_TRIP, subject, ServiceFactory.GetSettingService().GetTripExternalizationsEventGridTopicUrl(), ServiceFactory.GetSettingService().GetTripExternalizationsEventGridTopicApiKey());
}
}
public class TripInfo
{
public TripItem Trip { get; set; }
public DriverItem Driver { get; set; }
}
}