-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathHttpNodeJSService.cs
226 lines (204 loc) · 9.57 KB
/
HttpNodeJSService.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
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Jering.Javascript.NodeJS
{
/// <summary>
/// <para>An implementation of <see cref="OutOfProcessNodeJSService"/> that uses Http for inter-process communication.</para>
/// <para>The NodeJS child process starts a Http server on an arbitrary port (unless otherwise specified
/// using <see cref="NodeJSProcessOptions.Port"/>) and receives invocation requests as Http requests.</para>
/// </summary>
public class HttpNodeJSService : OutOfProcessNodeJSService
{
internal const string SERVER_SCRIPT_NAME = "HttpServer.js";
private readonly IHttpContentFactory _httpContentFactory;
private readonly IJsonService _jsonService;
private readonly IHttpClientService _httpClientService;
private bool _disposed;
// Volatile since it may be updated by different threads and we always
// want to use the most recent instance
internal volatile Uri _endpoint;
/// <summary>
/// Creates a <see cref="HttpNodeJSService"/>.
/// </summary>
/// <param name="outOfProcessNodeJSServiceOptionsAccessor"></param>
/// <param name="httpContentFactory"></param>
/// <param name="embeddedResourcesService"></param>
/// <param name="fileWatcherFactory"></param>
/// <param name="monitorService"></param>
/// <param name="taskService"></param>
/// <param name="httpClientService"></param>
/// <param name="jsonService"></param>
/// <param name="nodeJSProcessFactory"></param>
/// <param name="loggerFactory"></param>
public HttpNodeJSService(IOptions<OutOfProcessNodeJSServiceOptions> outOfProcessNodeJSServiceOptionsAccessor,
IHttpContentFactory httpContentFactory,
IEmbeddedResourcesService embeddedResourcesService,
IFileWatcherFactory fileWatcherFactory,
IMonitorService monitorService,
ITaskService taskService,
IHttpClientService httpClientService,
IJsonService jsonService,
INodeJSProcessFactory nodeJSProcessFactory,
ILoggerFactory loggerFactory) :
base(nodeJSProcessFactory,
loggerFactory.CreateLogger(typeof(HttpNodeJSService)),
outOfProcessNodeJSServiceOptionsAccessor,
embeddedResourcesService,
fileWatcherFactory,
monitorService,
taskService,
typeof(HttpNodeJSService).GetTypeInfo().Assembly,
SERVER_SCRIPT_NAME)
{
_httpClientService = httpClientService;
_jsonService = jsonService;
_httpContentFactory = httpContentFactory;
}
// DO NOT DELETE - keep for backward compatibility.
/// <summary>
/// <para>Creates a <see cref="HttpNodeJSService"/>.</para>
/// <para>If this constructor is used, file watching is disabled.</para>
/// </summary>
/// <param name="outOfProcessNodeJSServiceOptionsAccessor"></param>
/// <param name="httpContentFactory"></param>
/// <param name="embeddedResourcesService"></param>
/// <param name="httpClientService"></param>
/// <param name="jsonService"></param>
/// <param name="nodeJSProcessFactory"></param>
/// <param name="loggerFactory"></param>
public HttpNodeJSService(IOptions<OutOfProcessNodeJSServiceOptions> outOfProcessNodeJSServiceOptionsAccessor,
IHttpContentFactory httpContentFactory,
IEmbeddedResourcesService embeddedResourcesService,
IHttpClientService httpClientService,
IJsonService jsonService,
INodeJSProcessFactory nodeJSProcessFactory,
ILoggerFactory loggerFactory) :
this(outOfProcessNodeJSServiceOptionsAccessor,
httpContentFactory,
embeddedResourcesService,
null,
null,
null,
httpClientService,
jsonService,
nodeJSProcessFactory,
loggerFactory)
{
}
/// <inheritdoc />
protected override async Task<(bool, T)> TryInvokeAsync<T>(InvocationRequest invocationRequest, CancellationToken cancellationToken)
{
using HttpContent httpContent = _httpContentFactory.Create(invocationRequest);
using var httpRequestMessage = new HttpRequestMessage(HttpMethod.Post, _endpoint)
{
#if NETCOREAPP3_1 || NET5_0
Version = HttpVersion.Version20,
#endif
#if NET5_0
VersionPolicy = HttpVersionPolicy.RequestVersionExact,
#endif
Content = httpContent
};
// Some notes on disposal:
// HttpResponseMessage.Dispose simply calls Dispose on HttpResponseMessage.Content. By default, HttpResponseMessage.Content is a StreamContent instance that has an underlying
// NetworkStream instance that should be disposed. When HttpResponseMessage.Content.ReadAsStreamAsync is called, the NetworkStream is wrapped in a read-only delegating stream
// and returned. In most cases below, StreamReader is used to read the read-only stream, upon disposal of the StreamReader, the underlying stream and thus the NetworkStream
// are disposed. If HttpStatusCode is NotFound or an exception is thrown, we manually call HttpResponseMessage.Dispose. If we return the stream, we pass on the responsibility
// for disposing it to the caller.
HttpResponseMessage httpResponseMessage = null;
try
{
httpResponseMessage = await _httpClientService.SendAsync(httpRequestMessage, HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false);
if (httpResponseMessage.StatusCode == HttpStatusCode.NotFound)
{
httpResponseMessage.Dispose();
return (false, default(T));
}
if (httpResponseMessage.StatusCode == HttpStatusCode.InternalServerError)
{
using Stream stream = await httpResponseMessage.Content.ReadAsStreamAsync().ConfigureAwait(false);
InvocationError invocationError = await _jsonService.DeserializeAsync<InvocationError>(stream, cancellationToken).ConfigureAwait(false);
throw new InvocationException(invocationError.ErrorMessage, invocationError.ErrorStack);
}
if (httpResponseMessage.StatusCode == HttpStatusCode.OK)
{
if (typeof(T) == typeof(Void)) // Returned value doesn't matter
{
return (true, default);
}
if (typeof(T) == typeof(string))
{
string result = await httpResponseMessage.Content.ReadAsStringAsync().ConfigureAwait(false);
return (true, (T)(object)result);
}
if (typeof(T) == typeof(Stream))
{
Stream stream = await httpResponseMessage.Content.ReadAsStreamAsync().ConfigureAwait(false);
return (true, (T)(object)stream); // User's reponsibility to handle disposal
}
using (Stream stream = await httpResponseMessage.Content.ReadAsStreamAsync().ConfigureAwait(false))
{
T result = await _jsonService.DeserializeAsync<T>(stream, cancellationToken).ConfigureAwait(false);
return (true, result);
}
}
}
catch
{
httpResponseMessage?.Dispose();
throw;
}
throw new InvocationException(string.Format(Strings.InvocationException_HttpNodeJSService_UnexpectedStatusCode, httpResponseMessage.StatusCode));
}
/// <inheritdoc />
protected override void OnConnectionEstablishedMessageReceived(string connectionEstablishedMessage)
{
// Start after message start and "IP - "
int startIndex = CONNECTION_ESTABLISHED_MESSAGE_START.Length + 5;
var stringBuilder = new StringBuilder("http://");
for (int i = startIndex; i < connectionEstablishedMessage.Length; i++)
{
char currentChar = connectionEstablishedMessage[i];
if (currentChar == ':')
{
// ::1
stringBuilder.Append("[::1]");
i += 2;
}
else if (currentChar == ' ')
{
stringBuilder.Append(':');
// Skip over "Port - "
i += 7;
}
else if (currentChar == ']')
{
_endpoint = new Uri(stringBuilder.ToString());
return;
}
else
{
stringBuilder.Append(currentChar);
}
}
}
/// <inheritdoc />
protected override void Dispose(bool disposing)
{
if (_disposed)
{
return;
}
base.Dispose(disposing);
_disposed = true;
}
}
}