-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathDTUtils.cs
More file actions
252 lines (227 loc) · 10.4 KB
/
DTUtils.cs
File metadata and controls
252 lines (227 loc) · 10.4 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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace DurableTask.SqlServer
{
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using DurableTask.Core;
using DurableTask.Core.History;
using Newtonsoft.Json;
using SemVersion;
static class DTUtils
{
public static readonly SemanticVersion ExtensionVersion = GetExtensionVersion();
public static readonly string ExtensionVersionString = GetExtensionVersionForLogging(ExtensionVersion);
// DurableTask.Core has a public static variable that contains the app name
public static readonly string AppName = DurableTask.Core.Common.Utils.AppName;
static readonly JsonSerializer DefaultJsonSerializer = JsonSerializer.Create(
new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.None,
NullValueHandling = NullValueHandling.Ignore,
});
static SemanticVersion GetExtensionVersion()
{
// The product version is auto-generated by the Microsoft.SourceLink.GitHub nuget package.
// Example: 0.1.0-alpha+46661b102c4ccd123f46782f481c3d4b004e3845
string productVersion = FileVersionInfo.GetVersionInfo(
typeof(SqlOrchestrationService).Assembly.Location).ProductVersion;
return SemanticVersion.Parse(productVersion);
}
static string GetExtensionVersionForLogging(SemanticVersion version)
{
var builder = new StringBuilder();
builder
.Append(version.Major)
.Append('.')
.Append(version.Minor)
.Append('.')
.Append(version.Patch);
if (!string.IsNullOrEmpty(version.Prerelease))
{
builder.Append('-').Append(version.Prerelease);
}
#if DEBUG
// Include the build information only in debug builds
if (!string.IsNullOrEmpty(version.Build))
{
builder.Append('+').Append(version.Build);
}
#endif
return builder.ToString();
}
public static int GetTaskEventId(HistoryEvent historyEvent)
{
if (TryGetTaskScheduledId(historyEvent, out int taskScheduledId))
{
return taskScheduledId;
}
return historyEvent.EventId;
}
static bool TryGetTaskScheduledId(HistoryEvent historyEvent, out int taskScheduledId)
{
switch (historyEvent.EventType)
{
case EventType.TaskCompleted:
taskScheduledId = ((TaskCompletedEvent)historyEvent).TaskScheduledId;
return true;
case EventType.TaskFailed:
taskScheduledId = ((TaskFailedEvent)historyEvent).TaskScheduledId;
return true;
case EventType.SubOrchestrationInstanceCompleted:
taskScheduledId = ((SubOrchestrationInstanceCompletedEvent)historyEvent).TaskScheduledId;
return true;
case EventType.SubOrchestrationInstanceFailed:
taskScheduledId = ((SubOrchestrationInstanceFailedEvent)historyEvent).TaskScheduledId;
return true;
case EventType.TimerFired:
taskScheduledId = ((TimerFiredEvent)historyEvent).TimerId;
return true;
case EventType.ExecutionStarted:
var parentInstance = ((ExecutionStartedEvent)historyEvent).ParentInstance;
if (parentInstance != null)
{
// taskId that scheduled a sub-orchestration
taskScheduledId = parentInstance.TaskScheduleId;
return true;
}
else {
taskScheduledId = -1;
return false;
}
default:
taskScheduledId = -1;
return false;
}
}
public static bool TryGetPayloadText(HistoryEvent e, out string? payloadText)
{
if (TryGetFailureDetails(e, out FailureDetails? failureDetails) && failureDetails != null)
{
payloadText = SerializeToJson(failureDetails);
return true;
}
payloadText = e.EventType switch
{
EventType.ContinueAsNew => ((ContinueAsNewEvent)e).Result,
EventType.EventRaised => ((EventRaisedEvent)e).Input,
EventType.EventSent => ((EventSentEvent)e).Input,
EventType.ExecutionCompleted => ((ExecutionCompletedEvent)e).Result,
EventType.ExecutionFailed => ((ExecutionCompletedEvent)e).Result,
EventType.ExecutionStarted => ((ExecutionStartedEvent)e).Input,
EventType.ExecutionTerminated => ((ExecutionTerminatedEvent)e).Input,
EventType.GenericEvent => ((GenericEvent)e).Data,
EventType.SubOrchestrationInstanceCompleted => ((SubOrchestrationInstanceCompletedEvent)e).Result,
EventType.SubOrchestrationInstanceCreated => ((SubOrchestrationInstanceCreatedEvent)e).Input,
EventType.SubOrchestrationInstanceFailed => ((SubOrchestrationInstanceFailedEvent)e).Details,
EventType.TaskCompleted => ((TaskCompletedEvent)e).Result,
EventType.TaskFailed => ((TaskFailedEvent)e).Details,
EventType.TaskScheduled => ((TaskScheduledEvent)e).Input,
_ => null,
};
return payloadText != null;
}
public static bool TryGetFailureDetails(HistoryEvent e, out FailureDetails? failureDetails)
{
failureDetails = e.EventType switch
{
EventType.ExecutionCompleted => ((ExecutionCompletedEvent)e).FailureDetails,
EventType.ExecutionFailed => ((ExecutionCompletedEvent)e).FailureDetails,
EventType.TaskFailed => ((TaskFailedEvent)e).FailureDetails,
EventType.SubOrchestrationInstanceFailed => ((SubOrchestrationInstanceFailedEvent)e).FailureDetails,
_ => null,
};
return failureDetails != null;
}
public static bool HasPayload(HistoryEvent e)
{
return
(TryGetPayloadText(e, out string? text) && !string.IsNullOrEmpty(text)) ||
(TryGetFailureDetails(e, out FailureDetails? details) && details != null);
}
public static string? GetName(HistoryEvent historyEvent)
{
return historyEvent.EventType switch
{
EventType.EventRaised => ((EventRaisedEvent)historyEvent).Name,
EventType.EventSent => ((EventSentEvent)historyEvent).Name,
EventType.ExecutionStarted => ((ExecutionStartedEvent)historyEvent).Name,
EventType.SubOrchestrationInstanceCreated => ((SubOrchestrationInstanceCreatedEvent)historyEvent).Name,
EventType.TaskScheduled => ((TaskScheduledEvent)historyEvent).Name,
_ => null,
};
}
public static OrchestrationStatus? GetRuntimeStatus(HistoryEvent historyEvent)
{
switch (historyEvent.EventType)
{
case EventType.ExecutionCompleted:
case EventType.ExecutionFailed:
return ((ExecutionCompletedEvent)historyEvent).OrchestrationStatus;
default:
return null;
}
}
public static string? GetParentInstanceId(HistoryEvent historyEvent)
{
return historyEvent.EventType switch
{
EventType.ExecutionStarted => ((ExecutionStartedEvent)historyEvent).ParentInstance?.OrchestrationInstance.InstanceId,
_ => null,
};
}
public static string? GetVersion(HistoryEvent historyEvent)
{
return historyEvent.EventType switch
{
EventType.ExecutionStarted => ((ExecutionStartedEvent)historyEvent).Version,
EventType.SubOrchestrationInstanceCreated => ((SubOrchestrationInstanceCreatedEvent)historyEvent).Version,
EventType.TaskScheduled => ((TaskScheduledEvent)historyEvent).Version,
_ => null,
};
}
public static bool TryDeserializeFailureDetails(string jsonText, out FailureDetails? failureDetails)
{
try
{
failureDetails = DeserializeFromJson<FailureDetails>(jsonText);
// Depending on how the TaskHubWorker is configured, the text might be a FailureDetails JSON object
// or it might be a serialized Exception. Use the ErrorType field to distinguish. Note that we'll get a
// false-positive if the exception type has an ErrorType field so this is an imperfect check.
return failureDetails?.ErrorType != null;
}
catch (Exception)
{
failureDetails = null;
return false;
}
}
/// <summary>
/// Deserialize a JSON-string into an object of type T
/// This utility is resilient to end-user changes in the DefaultSettings of Newtonsoft.
/// </summary>
/// <typeparam name="T">The type to deserialize the JSON string into.</typeparam>
/// <param name="text">The JSON text.</param>
/// <returns>The deserialized value.</returns>
public static T? DeserializeFromJson<T>(string text)
{
using var reader = new StringReader(text);
using var jsonReader = new JsonTextReader(reader);
return DefaultJsonSerializer.Deserialize<T>(jsonReader);
}
/// <summary>
/// Serializes an object to JSON text.
/// </summary>
/// <param name="obj">The object to serialize into JSON.</param>
/// <returns>The unformatted JSON text.</returns>
public static string SerializeToJson(object obj)
{
using var writer = new StringWriter();
DefaultJsonSerializer.Serialize(writer, obj);
writer.Flush();
return writer.ToString();
}
}
}