forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNodeJsEngine.cs
More file actions
560 lines (460 loc) · 15.2 KB
/
NodeJsEngine.cs
File metadata and controls
560 lines (460 loc) · 15.2 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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Jering.Javascript.NodeJS;
using JavaScriptEngineSwitcher.Core;
using JavaScriptEngineSwitcher.Core.Constants;
using JavaScriptEngineSwitcher.Core.Helpers;
using JavaScriptEngineSwitcher.Core.Utilities;
using CoreStrings = JavaScriptEngineSwitcher.Core.Resources.Strings;
using WrapperCompilationException = JavaScriptEngineSwitcher.Core.JsCompilationException;
using WrapperException = JavaScriptEngineSwitcher.Core.JsException;
using WrapperRuntimeException = JavaScriptEngineSwitcher.Core.JsRuntimeException;
using WrapperScriptException = JavaScriptEngineSwitcher.Core.JsScriptException;
using WrapperTimeoutException = JavaScriptEngineSwitcher.Core.JsTimeoutException;
using WrapperUsageException = JavaScriptEngineSwitcher.Core.JsUsageException;
using JavaScriptEngineSwitcher.Node.Helpers;
namespace JavaScriptEngineSwitcher.Node
{
/// <summary>
/// Adapter for the Node JS engine
/// </summary>
public sealed class NodeJsEngine : JsEngineBase
{
/// <summary>
/// Name of resource, which contains a JS engine helpers
/// </summary>
private const string ENGINE_HELPERS_RESOURCE_NAME = "JavaScriptEngineSwitcher.Node.Resources.engine-helpers.js";
/// <summary>
/// Name of JS engine
/// </summary>
public const string EngineName = "NodeJsEngine";
/// <summary>
/// Node JS service
/// </summary>
private INodeJSService _jsService;
/// <summary>
/// Version of original JS engine
/// </summary>
private string _engineVersion = "0.0.0";
/// <summary>
/// JS engine identifier
/// </summary>
private string _engineId;
/// <summary>
/// Number of milliseconds to wait before the script execution times out
/// </summary>
private int _executionTimeout = -1;
/// <summary>
/// Unique document name manager
/// </summary>
private UniqueDocumentNameManager _documentNameManager = new UniqueDocumentNameManager(DefaultDocumentName);
/// <summary>
/// Regular expression for working with the timeout error message
/// </summary>
private static readonly Regex _timeoutErrorMessage = new Regex(@"^(?:Script execution|The Node invocation) " +
@"timed out after \d+ms");
/// <summary>
/// Regular expression for working with the error details
/// </summary>
private static readonly Regex _errorDetailsRegex = new Regex(@"^(?<description>[^\r\n]+)(?:\r\n|\n|\r)" +
@"(?:" +
@"(?<documentName>" + CommonRegExps.DocumentNamePattern + @")?:(?<lineNumber>\d+)(?:\r\n|\n|\r)" +
@"(?<sourceLine>[^\r\n]+)(?:\r\n|\n|\r)" +
@"(?<pointer>[ \t]*\^)(?:\r\n|\n|\r){2}" +
@")?");
/// <summary>
/// Regular expression for working with the error message with type
/// </summary>
private static readonly Regex _errorMessageWithTypeRegex =
new Regex(@"^(?<type>" + CommonRegExps.JsFullNamePattern + @"): (?<description>[^\r\n]+)");
/// <summary>
/// Constructs an instance of adapter for the Node JS engine
/// </summary>
public NodeJsEngine()
: this(DefaultNodeJsService.Instance, new NodeSettings())
{ }
/// <summary>
/// Constructs an instance of adapter for the Node JS engine
/// </summary>
/// <param name="nodeJsService">Node JS service</param>
public NodeJsEngine(INodeJSService nodeJsService)
: this(nodeJsService, new NodeSettings())
{ }
/// <summary>
/// Constructs an instance of adapter for the Node JS engine
/// </summary>
/// <param name="settings">Settings of the Node JS engine</param>
public NodeJsEngine(NodeSettings settings)
: this(DefaultNodeJsService.Instance, settings)
{ }
/// <summary>
/// Constructs an instance of adapter for the Node JS engine
/// </summary>
/// <param name="service">Node JS service</param>
/// <param name="settings">Settings of the Node JS engine</param>
public NodeJsEngine(INodeJSService service, NodeSettings settings)
{
if (service is null)
{
throw new ArgumentNullException(nameof(service));
}
_jsService = service;
try
{
Task<string> versionTask = _jsService.InvokeFromStringAsync<string>(
@"module.exports = (callback) => {
let version = process.versions.node;
callback(null , version);
};"
);
_engineVersion = versionTask.ConfigureAwait(false).GetAwaiter().GetResult();
}
catch (Exception e)
{
throw JsErrorHelpers.WrapEngineLoadException(e, EngineName, _engineVersion, true);
}
NodeSettings nodeSettings = settings ?? new NodeSettings();
_executionTimeout = (int)nodeSettings.TimeoutInterval.TotalMilliseconds;
_engineId = JsEngineIdGenerator.GetNextId();
InvokeEngineHelper("addContext", [_engineId, nodeSettings.UseBuiltinLibrary]);
}
private void InvokeEngineHelper(string exportName = null, object[] args = null)
{
Task<bool> cachedTask = _jsService.TryInvokeFromCacheAsync(ENGINE_HELPERS_RESOURCE_NAME,
exportName, args);
bool success = cachedTask.ConfigureAwait(false).GetAwaiter().GetResult();
if (!success)
{
Type type = typeof(NodeJsEngine);
Assembly assembly = type.Assembly;
using (Stream resourceStream = assembly.GetManifestResourceStream(ENGINE_HELPERS_RESOURCE_NAME))
{
Task task = _jsService.InvokeFromStreamAsync(resourceStream, ENGINE_HELPERS_RESOURCE_NAME,
exportName, args);
task.ConfigureAwait(false).GetAwaiter().GetResult();
}
}
}
private T InvokeEngineHelper<T>(string exportName = null, object[] args = null)
{
Task<(bool, T)> cachedTask = _jsService.TryInvokeFromCacheAsync<T>(ENGINE_HELPERS_RESOURCE_NAME,
exportName, args);
(bool success, T result) = cachedTask.ConfigureAwait(false).GetAwaiter().GetResult();
if (success)
{
return result;
}
else
{
Type type = typeof(NodeJsEngine);
Assembly assembly = type.Assembly;
using (Stream resourceStream = assembly.GetManifestResourceStream(ENGINE_HELPERS_RESOURCE_NAME))
{
Task<T> task = _jsService.InvokeFromStreamAsync<T>(resourceStream, ENGINE_HELPERS_RESOURCE_NAME,
exportName, args);
return task.ConfigureAwait(false).GetAwaiter().GetResult();
}
}
}
#region Mapping
/// <summary>
/// Makes a mapping of value from the host type to a script type
/// </summary>
/// <param name="value">The source value</param>
/// <returns>The mapped value</returns>
private static object MapToScriptType(object value)
{
if (value is Undefined)
{
return null;
}
return value;
}
/// <summary>
/// Makes a mapping of array items from the host type to a script type
/// </summary>
/// <param name="args">The source array</param>
/// <returns>The mapped array</returns>
public static object[] MapToScriptType(object[] args)
{
return args.Select(arg => MapToScriptType(arg)).ToArray();
}
#region Mapping
private WrapperException WrapInvocationException(InvocationException originalException)
{
WrapperException wrapperException;
string message = originalException.Message;
string description = string.Empty;
if (_timeoutErrorMessage.IsMatch(message))
{
message = CoreStrings.Runtime_ScriptTimeoutExceeded;
description = message;
var wrapperTimeoutException = new WrapperTimeoutException(message, EngineName, _engineVersion,
originalException)
{
Description = description
};
return wrapperTimeoutException;
}
string documentName = string.Empty;
int lineNumber = 0;
int columnNumber = 0;
string sourceLine = string.Empty;
Match detailsMatch = _errorDetailsRegex.Match(message);
int detailsLength = 0;
if (detailsMatch.Success)
{
GroupCollection detailsGroups = detailsMatch.Groups;
description = detailsGroups["description"].Value;
documentName = detailsGroups["documentName"].Success ?
detailsGroups["documentName"].Value : string.Empty;
lineNumber = detailsGroups["lineNumber"].Success ?
int.Parse(detailsGroups["lineNumber"].Value) : 0;
columnNumber = NodeJsErrorHelpers.GetColumnCountFromLine(detailsGroups["pointer"].Value);
sourceLine = detailsGroups["sourceLine"].Value;
detailsLength = detailsMatch.Length;
}
message = detailsLength > 0 ? message.Substring(detailsLength) : message;
Match messageWithTypeMatch = _errorMessageWithTypeRegex.Match(message);
if (messageWithTypeMatch.Success)
{
GroupCollection messageWithTypeGroups = messageWithTypeMatch.Groups;
string type = messageWithTypeGroups["type"].Value;
description = messageWithTypeGroups["description"].Value;
string sourceFragment = TextHelpers.GetTextFragmentFromLine(sourceLine, columnNumber);
WrapperScriptException wrapperScriptException;
if (type == JsErrorType.Syntax)
{
message = JsErrorHelpers.GenerateScriptErrorMessage(type, description, documentName,
lineNumber, columnNumber, sourceFragment);
wrapperScriptException = new WrapperCompilationException(message, EngineName, _engineVersion,
originalException);
}
else if (type == "UsageError")
{
wrapperException = new WrapperUsageException(description, EngineName, _engineVersion,
originalException);
wrapperException.Description = description;
return wrapperException;
}
else
{
ErrorLocationItem[] errorLocationItems = [];
int messageLength = message.Length;
int messageWithTypeLength = messageWithTypeMatch.Length;
if (messageWithTypeLength < messageLength)
{
string errorLocation = message.Substring(messageWithTypeLength);
errorLocationItems = NodeJsErrorHelpers.ParseErrorLocation(errorLocation);
errorLocationItems = NodeJsErrorHelpers.FilterErrorLocationItems(errorLocationItems);
if (errorLocationItems.Length > 0)
{
ErrorLocationItem firstErrorLocationItem = errorLocationItems[0];
documentName = firstErrorLocationItem.DocumentName;
lineNumber = firstErrorLocationItem.LineNumber;
columnNumber = firstErrorLocationItem.ColumnNumber;
firstErrorLocationItem.SourceFragment = sourceFragment;
}
}
string callStack = JsErrorHelpers.StringifyErrorLocationItems(errorLocationItems, true);
string callStackWithSourceFragment = JsErrorHelpers.StringifyErrorLocationItems(
errorLocationItems);
message = JsErrorHelpers.GenerateScriptErrorMessage(type, description,
callStackWithSourceFragment);
wrapperScriptException = new WrapperRuntimeException(message, EngineName, _engineVersion,
originalException)
{
CallStack = callStack
};
}
wrapperScriptException.Type = type;
wrapperScriptException.DocumentName = documentName;
wrapperScriptException.LineNumber = lineNumber;
wrapperScriptException.ColumnNumber = columnNumber;
wrapperScriptException.SourceFragment = sourceFragment;
wrapperException = wrapperScriptException;
}
else
{
wrapperException = new WrapperException(message, EngineName, _engineVersion,
originalException);
}
wrapperException.Description = description;
return wrapperException;
}
#endregion
#endregion
#region JsEngineBase overrides
protected override IPrecompiledScript InnerPrecompile(string code)
{
throw new NotSupportedException();
}
protected override IPrecompiledScript InnerPrecompile(string code, string documentName)
{
throw new NotSupportedException();
}
protected override object InnerEvaluate(string expression)
{
throw new NotSupportedException();
}
protected override object InnerEvaluate(string expression, string documentName)
{
throw new NotSupportedException();
}
protected override T InnerEvaluate<T>(string expression)
{
return InnerEvaluate<T>(expression, null);
}
protected override T InnerEvaluate<T>(string expression, string documentName)
{
string uniqueDocumentName = _documentNameManager.GetUniqueName(documentName);
T result;
try
{
result = InvokeEngineHelper<T>("evaluate", [_engineId, expression, uniqueDocumentName,
_executionTimeout]);
}
catch (InvocationException e)
{
throw WrapInvocationException(e);
}
return result;
}
protected override void InnerExecute(string code)
{
InnerExecute(code, null);
}
protected override void InnerExecute(string code, string documentName)
{
string uniqueDocumentName = _documentNameManager.GetUniqueName(documentName);
try
{
InvokeEngineHelper("execute", [_engineId, code, uniqueDocumentName, _executionTimeout]);
}
catch (InvocationException e)
{
throw WrapInvocationException(e);
}
}
protected override void InnerExecute(IPrecompiledScript precompiledScript)
{
throw new NotSupportedException();
}
protected override object InnerCallFunction(string functionName, params object[] args)
{
throw new NotSupportedException();
}
protected override T InnerCallFunction<T>(string functionName, params object[] args)
{
T result;
object[] processedArgs = MapToScriptType(args);
try
{
result = InvokeEngineHelper<T>("callFunction", [_engineId, functionName, processedArgs,
_executionTimeout]);
}
catch (InvocationException e)
{
throw WrapInvocationException(e);
}
return result;
}
protected override bool InnerHasVariable(string variableName)
{
return InvokeEngineHelper<bool>("hasVariable", [_engineId, variableName]);
}
protected override object InnerGetVariableValue(string variableName)
{
throw new NotSupportedException();
}
protected override T InnerGetVariableValue<T>(string variableName)
{
T result;
try
{
result = InvokeEngineHelper<T>("getVariableValue", [_engineId, variableName]);
}
catch (InvocationException e)
{
throw WrapInvocationException(e);
}
return result;
}
protected override void InnerSetVariableValue(string variableName, object value)
{
object processedValue = MapToScriptType(value);
try
{
InvokeEngineHelper("setVariableValue", [_engineId, variableName, processedValue]);
}
catch (InvocationException e)
{
throw WrapInvocationException(e);
}
}
protected override void InnerRemoveVariable(string variableName)
{
try
{
InvokeEngineHelper("removeVariable", [_engineId, variableName]);
}
catch (InvocationException e)
{
throw WrapInvocationException(e);
}
}
protected override void InnerEmbedHostObject(string itemName, object value)
{
throw new NotSupportedException();
}
protected override void InnerEmbedHostType(string itemName, Type type)
{
throw new NotSupportedException();
}
protected override void InnerInterrupt()
{
throw new NotSupportedException();
}
protected override void InnerCollectGarbage()
{
throw new NotSupportedException();
}
#region IJsEngine implementation
public override string Name
{
get { return EngineName; }
}
public override string Version
{
get { return _engineVersion; }
}
public override bool SupportsScriptPrecompilation
{
get { return false; }
}
public override bool SupportsScriptInterruption
{
get { return false; }
}
public override bool SupportsGarbageCollection
{
get { return false; }
}
#endregion
#region IDisposable implementation
public override void Dispose()
{
if (_disposedFlag.Set())
{
InvokeEngineHelper("removeContext", [_engineId]);
_jsService = null;
}
}
#endregion
#endregion
}
}