forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChakraCorePrecompiledScript.cs
More file actions
129 lines (111 loc) · 3.33 KB
/
ChakraCorePrecompiledScript.cs
File metadata and controls
129 lines (111 loc) · 3.33 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
using System.Runtime.InteropServices;
using System.Text;
using JavaScriptEngineSwitcher.Core;
using JavaScriptEngineSwitcher.ChakraCore.JsRt;
using OriginalException = JavaScriptEngineSwitcher.ChakraCore.JsRt.JsException;
namespace JavaScriptEngineSwitcher.ChakraCore
{
/// <summary>
/// Represents a pre-compiled script that can be executed by different instances of the ChakraCore JS engine
/// </summary>
internal sealed class ChakraCorePrecompiledScript : IPrecompiledScript
{
/// <summary>
/// Callback for finalization of external buffer
/// </summary>
private JsObjectFinalizeCallback _externalBufferFinalizeCallback;
/// <summary>
/// Gets a source code of the script
/// </summary>
public string Code
{
get;
private set;
}
/// <summary>
/// Gets a attribute mask for parsing the script
/// </summary>
public JsParseScriptAttributes ParseAttributes
{
get;
private set;
}
/// <summary>
/// Gets a cached data for accelerated recompilation
/// </summary>
public byte[] CachedBytes
{
get;
private set;
}
/// <summary>
/// Gets a document name
/// </summary>
public string DocumentName
{
get;
private set;
}
/// <summary>
/// Gets a callback to load the source code of the serialized script
/// </summary>
public JsSerializedLoadScriptCallback LoadScriptSourceCodeCallback
{
get;
private set;
}
/// <summary>
/// Constructs an instance of pre-compiled script
/// </summary>
/// <param name="code">The source code of the script</param>
/// <param name="parseAttributes">Attribute mask for parsing the script</param>
/// <param name="cachedBytes">Cached data for accelerated recompilation</param>
/// <param name="documentName">Document name</param>
public ChakraCorePrecompiledScript(string code, JsParseScriptAttributes parseAttributes, byte[] cachedBytes,
string documentName)
{
_externalBufferFinalizeCallback = Marshal.FreeHGlobal;
Code = code;
ParseAttributes = parseAttributes;
CachedBytes = cachedBytes;
DocumentName = documentName;
LoadScriptSourceCodeCallback = LoadScriptSourceCode;
}
/// <summary>
/// Loads a source code of the serialized script
/// </summary>
/// <param name="sourceContext">A cookie identifying the script that can be used
/// by debuggable script contexts</param>
/// <param name="value">The script returned</param>
/// <param name="parseAttributes">Attribute mask for parsing the script</param>
/// <returns>true if the operation succeeded, false otherwise</returns>
private bool LoadScriptSourceCode(JsSourceContext sourceContext,
out JsValue value, out JsParseScriptAttributes parseAttributes)
{
bool result;
parseAttributes = ParseAttributes;
Encoding encoding = parseAttributes.HasFlag(JsParseScriptAttributes.ArrayBufferIsUtf16Encoded) ?
Encoding.Unicode : Encoding.UTF8;
try
{
value = JsValue.CreateExternalArrayBuffer(Code, encoding, _externalBufferFinalizeCallback);
result = true;
}
catch (OriginalException)
{
value = JsValue.Invalid;
result = false;
}
return result;
}
#region IPrecompiledScript implementation
/// <summary>
/// Gets a name of JS engine for which the pre-compiled script was created
/// </summary>
public string EngineName
{
get { return ChakraCoreJsEngine.EngineName; }
}
#endregion
}
}