-
Notifications
You must be signed in to change notification settings - Fork 1
/
NodeBinding.cpp
445 lines (363 loc) · 10.9 KB
/
NodeBinding.cpp
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
#include "graphqlservice/JSONResponse.h"
#include "TodayMock.h"
#include <nan.h>
#include <iostream>
#include <map>
#include <memory>
#include <queue>
#include <thread>
using Nan::AsyncProgressQueueWorker;
using Nan::AsyncQueueWorker;
using Nan::Callback;
using Nan::DecodeWrite;
using Nan::Encoding;
using Nan::GetFunction;
using Nan::HandleScope;
using Nan::New;
using Nan::Null;
using Nan::Set;
using Nan::To;
using v8::Function;
using v8::FunctionTemplate;
using v8::Int32;
using v8::Local;
using v8::Promise;
using v8::String;
using v8::Value;
using namespace graphql;
static std::shared_ptr<today::Appointment> appointment;
static std::shared_ptr<today::Task> task;
static std::shared_ptr<today::Folder> folder;
static std::map<response::IdType, std::shared_ptr<today::object::Node>> nodes;
static std::shared_ptr<today::Operations> serviceSingleton;
void loadAppointments()
{
std::string fakeAppointmentId("fakeAppointmentId");
response::IdType binAppointmentId(fakeAppointmentId.size());
std::copy(fakeAppointmentId.cbegin(), fakeAppointmentId.cend(), binAppointmentId.begin());
appointment = std::make_shared<today::Appointment>(std::move(binAppointmentId),
"tomorrow",
"Lunch?",
false);
nodes[appointment->id()] = std::make_shared<today::object::Node>(
std::make_shared<today::object::Appointment>(appointment));
};
void loadTasks()
{
std::string fakeTaskId("fakeTaskId");
response::IdType binTaskId(fakeTaskId.size());
std::copy(fakeTaskId.cbegin(), fakeTaskId.cend(), binTaskId.begin());
task = std::make_shared<today::Task>(std::move(binTaskId), "Don't forget", true);
nodes[task->id()] =
std::make_shared<today::object::Node>(std::make_shared<today::object::Task>(task));
}
void loadUnreadCounts()
{
std::string fakeFolderId("fakeFolderId");
response::IdType binFolderId(fakeFolderId.size());
std::copy(fakeFolderId.cbegin(), fakeFolderId.cend(), binFolderId.begin());
folder = std::make_shared<today::Folder>(std::move(binFolderId), "\"Fake\" Inbox", 3);
nodes[folder->id()] =
std::make_shared<today::object::Node>(std::make_shared<today::object::Folder>(folder));
}
class MockSubscription
{
public:
explicit MockSubscription() = default;
std::shared_ptr<today::object::Appointment> getNextAppointmentChange() const
{
throw std::runtime_error("Unexpected call to getNextAppointmentChange");
}
std::shared_ptr<today::object::Node> getNodeChange(response::IdType&& nodeId) const
{
auto itr = nodes.find(nodeId);
return itr == nodes.end() ? std::shared_ptr<today::object::Node> {} : itr->second;
}
};
NAN_METHOD(startService)
{
loadAppointments();
loadTasks();
loadUnreadCounts();
auto query = std::make_shared<today::Query>(
[]() -> std::vector<std::shared_ptr<today::Appointment>> {
return { appointment };
},
[]() -> std::vector<std::shared_ptr<today::Task>> {
return { task };
},
[]() -> std::vector<std::shared_ptr<today::Folder>> {
return { folder };
});
auto mutation = std::make_shared<today::Mutation>(
[](today::CompleteTaskInput&& input) -> std::shared_ptr<today::CompleteTaskPayload> {
auto itr = nodes.find(input.id);
if (itr == nodes.end())
{
return nullptr;
}
service::SubscriptionArguments arguments;
arguments["id"] = response::Value(std::move(input.id));
serviceSingleton
->deliver({ "nodeChange",
{ service::SubscriptionFilter { { std::move(arguments) } } },
std::launch::async,
std::make_shared<today::object::Subscription>(
std::make_shared<MockSubscription>()) })
.get();
return std::make_shared<today::CompleteTaskPayload>(task,
std::move(input.clientMutationId));
});
serviceSingleton = std::make_shared<today::Operations>(std::move(query),
std::move(mutation),
std::shared_ptr<today::Subscription> {});
}
struct SubscriptionPayloadQueue : std::enable_shared_from_this<SubscriptionPayloadQueue>
{
~SubscriptionPayloadQueue()
{
Unsubscribe();
}
void Unsubscribe()
{
std::unique_lock<std::mutex> lock(mutex);
if (!registered)
{
return;
}
registered = false;
auto deferUnsubscribe = std::move(key);
lock.unlock();
condition.notify_one();
if (deferUnsubscribe && serviceSingleton)
{
serviceSingleton->unsubscribe({ *deferUnsubscribe }).get();
}
}
std::mutex mutex;
std::condition_variable condition;
std::queue<response::AwaitableValue> payloads;
std::optional<service::SubscriptionKey> key;
bool registered = false;
};
static std::map<std::int32_t, peg::ast> queryMap;
static std::map<std::int32_t, std::shared_ptr<SubscriptionPayloadQueue>> subscriptionMap;
NAN_METHOD(stopService)
{
if (serviceSingleton)
{
for (const auto& entry : subscriptionMap)
{
entry.second->Unsubscribe();
}
subscriptionMap.clear();
queryMap.clear();
serviceSingleton.reset();
}
}
NAN_METHOD(parseQuery)
{
std::string query(*Nan::Utf8String(To<String>(info[0]).ToLocalChecked()));
const std::int32_t queryId = (queryMap.empty() ? 1 : queryMap.crbegin()->first + 1);
try
{
auto ast = peg::parseString(query);
auto validationErrors = serviceSingleton->validate(ast);
if (!validationErrors.empty())
{
throw service::schema_exception { std::move(validationErrors) };
}
queryMap[queryId] = std::move(ast);
info.GetReturnValue().Set(New<Int32>(queryId));
}
catch (const std::exception& ex)
{
Nan::ThrowError(ex.what());
}
}
NAN_METHOD(discardQuery)
{
const auto queryId = To<std::int32_t>(info[0]).FromJust();
queryMap.erase(queryId);
}
class RegisteredSubscription : public AsyncProgressQueueWorker<std::string>
{
public:
explicit RegisteredSubscription(std::int32_t queryId, std::string&& operationName,
const std::string& variables, std::unique_ptr<Callback>&& next,
std::unique_ptr<Callback>&& complete)
: AsyncProgressQueueWorker(complete.release(), "graphql:subscription")
, _next { std::move(next) }
{
try
{
_payloadQueue = std::make_shared<SubscriptionPayloadQueue>();
const auto itrQuery = queryMap.find(queryId);
if (itrQuery == queryMap.cend())
{
throw std::runtime_error("Unknown queryId");
}
auto& ast = itrQuery->second;
auto parsedVariables = (variables.empty() ? response::Value(response::Type::Map)
: response::parseJSON(variables));
if (parsedVariables.type() != response::Type::Map)
{
throw std::runtime_error("Invalid variables object");
}
std::unique_lock<std::mutex> lock(_payloadQueue->mutex);
if (serviceSingleton->findOperationDefinition(ast, operationName).first
== service::strSubscription)
{
_payloadQueue->registered = true;
_payloadQueue->key = std::make_optional(
serviceSingleton
->subscribe(
{ [spQueue = _payloadQueue](response::Value payload) noexcept -> void {
std::unique_lock<std::mutex> lock(spQueue->mutex);
if (!spQueue->registered)
{
return;
}
std::promise<response::Value> promise;
promise.set_value(std::move(payload));
spQueue->payloads.push(promise.get_future());
lock.unlock();
spQueue->condition.notify_one();
},
peg::ast { ast },
std::move(operationName),
std::move(parsedVariables) })
.get());
}
else
{
_payloadQueue->payloads.push(
serviceSingleton->resolve({ ast, operationName, std::move(parsedVariables) }));
lock.unlock();
_payloadQueue->condition.notify_one();
}
}
catch (const std::exception& ex)
{
std::cerr << "Caught exception preparing the subscription: " << ex.what() << std::endl;
}
}
~RegisteredSubscription()
{
if (_payloadQueue)
{
_payloadQueue->Unsubscribe();
}
}
const std::shared_ptr<SubscriptionPayloadQueue>& GetPayloadQueue() const
{
return _payloadQueue;
}
private:
// Executed inside the worker-thread.
// It is not safe to access V8, or V8 data structures
// here, so everything we need for input and output
// should go on `this`.
void Execute(const ExecutionProgress& progress) override
{
auto spQueue = _payloadQueue;
bool registered = true;
while (registered)
{
std::unique_lock<std::mutex> lock(spQueue->mutex);
spQueue->condition.wait(lock, [spQueue]() noexcept -> bool {
return !spQueue->registered || !spQueue->payloads.empty();
});
auto payloads = std::move(spQueue->payloads);
registered = spQueue->registered;
lock.unlock();
std::vector<std::string> json;
while (!payloads.empty())
{
response::Value document { response::Type::Map };
auto payload = std::move(payloads.front());
payloads.pop();
try
{
document = payload.get();
}
catch (service::schema_exception& scx)
{
document.reserve(2);
document.emplace_back(std::string { service::strData }, {});
document.emplace_back(std::string { service::strErrors }, scx.getErrors());
}
catch (const std::exception& ex)
{
std::ostringstream oss;
oss << "Caught exception delivering subscription payload: " << ex.what();
document.reserve(2);
document.emplace_back(std::string { service::strData }, {});
document.emplace_back(std::string { service::strErrors },
response::Value { oss.str() });
}
json.push_back(response::toJSON(std::move(document)));
}
if (!json.empty())
{
progress.Send(json.data(), json.size());
}
}
}
// Executed when the async results are ready
// this function will be run inside the main event loop
// so it is safe to use V8 again
void HandleProgressCallback(const std::string* data, size_t size) override
{
if (data == nullptr)
{
return;
}
HandleScope scope;
while (size-- > 0)
{
Local<Value> argv[] = {
New<String>(data->c_str(), static_cast<int>(data->size())).ToLocalChecked()
};
_next->Call(1, argv, async_resource);
++data;
}
}
std::unique_ptr<Callback> _next;
std::shared_ptr<SubscriptionPayloadQueue> _payloadQueue;
};
NAN_METHOD(fetchQuery)
{
const auto queryId = To<std::int32_t>(info[0]).FromJust();
std::string operationName(*Nan::Utf8String(To<String>(info[1]).ToLocalChecked()));
std::string variables(*Nan::Utf8String(To<String>(info[2]).ToLocalChecked()));
auto next = std::make_unique<Callback>(To<Function>(info[3]).ToLocalChecked());
auto complete = std::make_unique<Callback>(To<Function>(info[4]).ToLocalChecked());
auto subscription = std::make_unique<RegisteredSubscription>(queryId,
std::move(operationName),
variables,
std::move(next),
std::move(complete));
subscriptionMap[queryId] = subscription->GetPayloadQueue();
AsyncQueueWorker(subscription.release());
}
NAN_METHOD(unsubscribe)
{
const auto queryId = To<std::int32_t>(info[0]).FromJust();
auto itr = subscriptionMap.find(queryId);
if (itr != subscriptionMap.end())
{
itr->second->Unsubscribe();
subscriptionMap.erase(itr);
}
}
NAN_MODULE_INIT(Init)
{
NAN_EXPORT(target, startService);
NAN_EXPORT(target, stopService);
NAN_EXPORT(target, parseQuery);
NAN_EXPORT(target, discardQuery);
NAN_EXPORT(target, fetchQuery);
NAN_EXPORT(target, unsubscribe);
}
NODE_MODULE(cppgraphql, Init)