-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathInvocationHelper.cs
More file actions
516 lines (461 loc) · 18.5 KB
/
InvocationHelper.cs
File metadata and controls
516 lines (461 loc) · 18.5 KB
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.ExceptionServices;
using System.Threading.Tasks;
using Cleipnir.ResilientFunctions.CoreRuntime.Serialization;
using Cleipnir.ResilientFunctions.Domain;
using Cleipnir.ResilientFunctions.Messaging;
using Cleipnir.ResilientFunctions.Domain.Exceptions;
using Cleipnir.ResilientFunctions.Helpers;
using Cleipnir.ResilientFunctions.Queuing;
using Cleipnir.ResilientFunctions.Storage;
using Cleipnir.ResilientFunctions.Storage.Session;
namespace Cleipnir.ResilientFunctions.CoreRuntime.Invocation;
internal class InvocationHelper<TParam, TReturn>
{
private readonly ShutdownCoordinator _shutdownCoordinator;
private readonly bool _clearChildren;
private readonly IFunctionStore _functionStore;
private readonly SettingsWithDefaults _settings;
private readonly bool _isParamlessFunction;
private readonly FlowType _flowType;
private readonly StoredType _storedType;
private readonly ReplicaId _replicaId;
private readonly ResultBusyWaiter<TReturn> _resultBusyWaiter;
public UtcNow UtcNow { get; }
private ISerializer Serializer { get; }
public InvocationHelper(FlowType flowType, StoredType storedType, ReplicaId replicaId, bool isParamlessFunction, SettingsWithDefaults settings, IFunctionStore functionStore, ShutdownCoordinator shutdownCoordinator, ISerializer serializer, UtcNow utcNow, bool clearChildren)
{
_flowType = flowType;
_isParamlessFunction = isParamlessFunction;
_settings = settings;
Serializer = serializer;
UtcNow = utcNow;
_shutdownCoordinator = shutdownCoordinator;
_clearChildren = clearChildren;
_storedType = storedType;
_replicaId = replicaId;
_functionStore = functionStore;
_resultBusyWaiter = new ResultBusyWaiter<TReturn>(_functionStore, Serializer);
}
public record PersistedInStoreResult(bool Created, IDisposable RunningFunction, IStorageSession? StorageSession);
public async Task<PersistedInStoreResult> PersistFunctionInStore(
FlowId flowId,
StoredId storedId,
FlowInstance humanInstanceId,
TParam param,
DateTime? scheduleAt,
StoredId? parent,
ReplicaId? owner,
InitialState? initialState)
{
if (!_isParamlessFunction)
ArgumentNullException.ThrowIfNull(param);
var runningFunction = _shutdownCoordinator.RegisterRunningFunction();
try
{
var storedParameter = SerializeParameter(param);
var utcNowTicks = UtcNow().Ticks;
var effects = initialState == null
? null
: MapInitialEffects(initialState.Effects, flowId);
var messages = initialState == null
? null
: MapInitialMessages(initialState.Messages);
var storageState = await _functionStore.CreateFunction(
storedId,
humanInstanceId,
storedParameter,
leaseExpiration: utcNowTicks + _settings.LeaseLength.Ticks,
postponeUntil: scheduleAt?.ToUniversalTime().Ticks,
timestamp: utcNowTicks,
parent,
owner: scheduleAt == null ? owner : null,
effects,
messages
);
var created = storageState != null;
if (!created) runningFunction.Dispose();
return new PersistedInStoreResult(created, runningFunction, storageState);
}
catch (Exception)
{
runningFunction.Dispose();
throw;
}
}
public async Task<TReturn> WaitForFunctionResult(FlowId flowId, StoredId storedId, bool allowPostponedAndSuspended, TimeSpan? maxWait)
=> await _resultBusyWaiter.WaitForFunctionResult(flowId, storedId, allowPostponedAndSuspended, maxWait);
public async Task PersistFailure(StoredId storedId, FatalWorkflowException exception, TParam param)
{
var storedException = exception.ToStoredException();
var success = await _functionStore.FailFunction(
storedId,
storedException,
timestamp: UtcNow().Ticks,
_replicaId,
effects: null,
messages: null,
storageSession: null
);
if (!success)
throw UnexpectedStateException.ConcurrentModification(storedId);
}
public async Task<PersistResultOutcome> PersistResult(StoredId storedId, Result<TReturn> result, TParam param, IStorageSession? storageSession)
{
switch (result.Outcome)
{
case Outcome.Succeed:
return await _functionStore.SucceedFunction(
storedId,
result: SerializeResult(result.SucceedWithValue),
timestamp: UtcNow().Ticks,
_replicaId,
effects: null,
messages: null,
storageSession
) ? PersistResultOutcome.Success : PersistResultOutcome.Failed;
case Outcome.Postpone:
return await _functionStore.PostponeFunction(
storedId,
postponeUntil: result.Postpone!.DateTime.Ticks,
timestamp: UtcNow().Ticks,
_replicaId,
effects: null,
messages: null,
failIfInterrupted: true,
storageSession
) ? PersistResultOutcome.Success : PersistResultOutcome.Reschedule;
case Outcome.Fail:
return await _functionStore.FailFunction(
storedId,
storedException: result.Fail!.ToStoredException(),
timestamp: UtcNow().Ticks,
_replicaId,
effects: null,
messages: null,
storageSession
) ? PersistResultOutcome.Success : PersistResultOutcome.Failed;
case Outcome.Suspend:
return await _functionStore.SuspendFunction(
storedId,
timestamp: UtcNow().Ticks,
_replicaId,
effects: null,
messages: null,
storageSession
) ? PersistResultOutcome.Success : PersistResultOutcome.Reschedule;
default:
throw new ArgumentOutOfRangeException();
}
}
public static void EnsureSuccess(FlowId flowId, Result<TReturn> result, bool allowPostponedOrSuspended)
{
switch (result.Outcome)
{
case Outcome.Succeed:
return;
case Outcome.Postpone:
if (allowPostponedOrSuspended)
return;
else
throw new InvocationPostponedException(flowId, result.Postpone!.DateTime);
case Outcome.Fail:
ExceptionDispatchInfo.Throw(result.Fail!);
break;
case Outcome.Suspend:
if (allowPostponedOrSuspended)
return;
else
throw new InvocationSuspendedException(flowId);
default:
throw new ArgumentOutOfRangeException();
}
}
public async Task PublishCompletionMessageToParent(StoredId? parent, FlowId childId, Result<TReturn> result)
{
if (parent == null)
return;
var msg = result.Outcome switch
{
Outcome.Succeed => new FlowCompleted(childId, Result: SerializeResult(result.SucceedWithValue), Failed: false),
Outcome.Fail => new FlowCompleted(childId, Result: null, Failed: true),
_ => default
};
if (msg == null)
return;
var content = Serializer.Serialize(msg, msg.GetType());
var type = Serializer.SerializeType(msg.GetType());
var storedMessage = new StoredMessage(content, type, Position: 0, IdempotencyKey: $"FlowCompleted:{childId}");
await _functionStore.MessageStore.AppendMessage(parent, storedMessage);
await _functionStore.Interrupt(parent);
}
public async Task<RestartedFunction?> RestartFunction(StoredId flowId)
{
var restarted = await _functionStore.RestartExecution(
flowId,
_replicaId
);
return restarted != null
? new RestartedFunction(
restarted.StoredFlow,
restarted.Effects,
restarted.Messages,
restarted.StorageSession
)
: null;
}
public async Task<PreparedReInvocation> PrepareForReInvocation(StoredId storedId, RestartedFunction restartedFunction)
{
var (sf, effects, messages, storageSession) = restartedFunction;
var flowId = new FlowId(_flowType, sf.InstanceId);
var runningFunction = _shutdownCoordinator.RegisterRunningFunction();
try
{
var param = sf.Parameter == null
? default
: (TParam)Serializer.Deserialize(sf.Parameter, typeof(TParam));
return new PreparedReInvocation(
flowId,
param,
effects,
messages,
runningFunction,
sf.ParentId,
storageSession
);
}
catch (DeserializationException e)
{
runningFunction.Dispose();
sf = await _functionStore.GetFunction(storedId);
if (sf == null)
throw UnexpectedStateException.NotFound(flowId);
await _functionStore.FailFunction(
storedId,
storedException: FatalWorkflowException.CreateNonGeneric(flowId, e).ToStoredException(),
timestamp: UtcNow().Ticks,
_replicaId,
effects: null,
messages: null,
storageSession: null
);
throw;
}
catch (Exception)
{
runningFunction.Dispose();
throw;
}
}
internal record PreparedReInvocation(
FlowId FlowId,
TParam? Param,
IReadOnlyList<StoredEffect> Effects,
IReadOnlyList<StoredMessage> Messages,
IDisposable RunningFunction,
StoredId? Parent,
IStorageSession? StorageSession
);
public async Task<bool> SetFunctionState(
StoredId storedId,
Status status,
TParam param,
TReturn? result,
long expires,
FatalWorkflowException? exception,
ReplicaId? expectedReplicaId
)
{
return await _functionStore.SetFunctionState(
storedId,
status,
param: SerializeParameter(param),
result: SerializeResult(result),
exception == null ? null : exception.ToStoredException(),
expires,
expectedReplicaId
);
}
public async Task<bool> SaveControlPanelChanges(
StoredId storedId,
TParam param,
TReturn? @return,
ReplicaId? expectedReplica)
{
return await _functionStore.SetParameters(
storedId,
param: SerializeParameter(param),
result: SerializeResult(@return),
expectedReplica
);
}
public async Task Delete(StoredId storedId) => await _functionStore.DeleteFunction(storedId);
public async Task<FunctionState<TParam, TReturn>?> GetFunction(StoredId storedId, FlowId flowId)
{
var sf = await _functionStore.GetFunction(storedId);
if (sf == null)
return null;
var results = await _functionStore.GetResults([storedId]);
var resultBytes = results.TryGetValue(storedId, out var rb) ? rb : null;
return new FunctionState<TParam, TReturn>(
sf.Status,
sf.Expires,
sf.OwnerId,
Param:
sf.Parameter == null
? default
: (TParam)Serializer.Deserialize(sf.Parameter, typeof(TParam)),
Result: resultBytes == null
? default
: (TReturn)Serializer.Deserialize(resultBytes, typeof(TReturn)),
FatalWorkflowException: sf.Exception == null
? null
: FatalWorkflowException.Create(flowId, sf.Exception)
);
}
public async Task<InnerScheduled<TReturn>> BulkSchedule(IReadOnlyList<BulkWork<TParam>> work, bool? detach = null)
{
var parent = GetAndEnsureParent(detach);
if (parent != null)
{
var marked = await parent.Effect.Mark(flush: true); //todo should flush be true
if (!marked)
return CreateInnerScheduled(
work.Select(w => new FlowId(_flowType, w.Instance)).ToList(),
parent,
detach
);
}
await _functionStore.BulkScheduleFunctions(
work.Select(bw =>
{
byte[]? paramBytes = null;
if (!_isParamlessFunction && bw.Param != null)
paramBytes = Serializer.Serialize(bw.Param, typeof(TParam));
return new IdWithParam(
StoredId.Create(_storedType, bw.Instance),
bw.Instance,
paramBytes
);
}),
parent?.StoredId
);
return CreateInnerScheduled(
work.Select(w => new FlowId(_flowType, w.Instance)).ToList(),
parent,
detach
);
}
public MessageWriter CreateMessageWriter(StoredId storedId)
=> new MessageWriter(storedId, _functionStore.MessageStore, Serializer);
public Effect CreateEffect(StoredId storedId, FlowId flowId, IReadOnlyList<StoredEffect> storedEffects, FlowTimeouts flowTimeouts, IStorageSession? storageSession, FlowsManager flowsManager)
{
var effectsStore = _functionStore.EffectsStore;
var effectResults = new EffectResults(
flowId,
storedId,
storedEffects,
effectsStore,
Serializer,
storageSession,
_clearChildren
);
var effect = new Effect(effectResults, UtcNow, flowTimeouts, flowsManager, storedId);
return effect;
}
public async Task<ExistingEffects> CreateExistingEffects(FlowId flowId)
{
var storedId = MapToStoredId(flowId);
var storedEffects = await _functionStore.EffectsStore.GetEffectResults(storedId);
return new ExistingEffects(storedId, flowId, _functionStore.EffectsStore, Serializer, storedEffects);
}
public ExistingMessages CreateExistingMessages(FlowId flowId) => new(MapToStoredId(flowId), _functionStore.MessageStore, Serializer);
public QueueManager CreateQueueManager(FlowId flowId, StoredId storedId, Effect effect, FlowState flowState, FlowTimeouts timeouts, UnhandledExceptionHandler unhandledExceptionHandler)
=> new(flowId, storedId, _functionStore.MessageStore, Serializer, effect, flowState, unhandledExceptionHandler, timeouts, UtcNow, _settings);
public StoredId MapToStoredId(FlowId flowId) => StoredId.Create(_storedType, flowId.Instance.Value);
private byte[]? SerializeParameter(TParam param)
{
if (typeof(TParam) == typeof(Unit))
return null;
if (param is null)
return null;
return Serializer.Serialize(param, typeof(TParam));
}
private byte[]? SerializeResult(TReturn? result)
{
if (typeof(TReturn) == typeof(Unit))
return null;
if (result is null)
return null;
return Serializer.Serialize(result, typeof(TReturn));
}
public InnerScheduled<TReturn> CreateInnerScheduled(List<FlowId> scheduledIds, Workflow? parentWorkflow, bool? detach, Task<TReturn>? task = null)
=> new(
_storedType,
scheduledIds,
parentWorkflow: detach == false ? null : parentWorkflow,
Serializer,
_resultBusyWaiter,
task
);
public Workflow? GetAndEnsureParent(bool? detach)
{
if (detach == true)
return null;
var parentWorkflow = CurrentFlow.Workflow;
if (parentWorkflow == null && detach == false)
throw new InvalidOperationException("Cannot start an attached flow without a parent");
return parentWorkflow;
}
public IReadOnlyList<StoredEffect> MapInitialEffects(IEnumerable<InitialEffect> initialEffects, FlowId flowId)
=> initialEffects
.Select(e =>
{
if (e.Exception == null)
{
byte[]? resultBytes = null;
if (e.Value != null)
resultBytes = Serializer.Serialize(e.Value, e.Value.GetType());
return new StoredEffect(
e.Id,
e.Status ?? WorkStatus.Completed,
Result: resultBytes,
StoredException: null,
Alias: e.Alias ?? e.Id.Serialize().ToStringValue());
}
return new StoredEffect(
e.Id,
WorkStatus.Failed,
Result: null,
StoredException: FatalWorkflowException.CreateNonGeneric(flowId, e.Exception).ToStoredException(),
Alias: e.Alias
);
}).ToList();
public IReadOnlyList<StoredMessage> MapInitialMessages(IEnumerable<MessageAndIdempotencyKey> initialMessages)
=> initialMessages.Select(m =>
{
var content = Serializer.Serialize(m.Message, m.Message.GetType());
var type = Serializer.SerializeType(m.Message.GetType());
return new StoredMessage(content, type, Position: 0, m.IdempotencyKey);
}).ToList();
internal IReadOnlyList<StoredMessage> AddPositionsToMessages(IReadOnlyList<StoredMessage> messages)
{
var position = 0L;
return messages.Select(m => m with { Position = position++ }).ToList();
}
public async Task<bool> Reschedule(StoredId id, TParam param)
{
return await _functionStore.PostponeFunction(
id,
postponeUntil: 0,
timestamp: UtcNow().Ticks,
_replicaId,
effects: null,
messages: null,
failIfInterrupted: false,
storageSession: null
);
}
}