-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTodayMock.cpp
596 lines (489 loc) · 14.5 KB
/
TodayMock.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
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
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "TodayMock.h"
#include "AppointmentConnectionObject.h"
#include "CompleteTaskPayloadObject.h"
#include "ExpensiveObject.h"
#include "FolderConnectionObject.h"
#include "NestedTypeObject.h"
#include "TaskConnectionObject.h"
#include "UnionTypeObject.h"
#include <algorithm>
#include <chrono>
#include <future>
#include <iostream>
namespace graphql::today {
Appointment::Appointment(
response::IdType&& id, std::string&& when, std::string&& subject, bool isNow)
: _id(std::move(id))
, _when(std::make_shared<response::Value>(std::move(when)))
, _subject(std::make_shared<response::Value>(std::move(subject)))
, _isNow(isNow)
{
}
Task::Task(response::IdType&& id, std::string&& title, bool isComplete)
: _id(std::move(id))
, _title(std::make_shared<response::Value>(std::move(title)))
, _isComplete(isComplete)
{
}
Folder::Folder(response::IdType&& id, std::string&& name, int unreadCount)
: _id(std::move(id))
, _name(std::make_shared<response::Value>(std::move(name)))
, _unreadCount(unreadCount)
{
}
Query::Query(appointmentsLoader&& getAppointments, tasksLoader&& getTasks,
unreadCountsLoader&& getUnreadCounts)
: _getAppointments(std::move(getAppointments))
, _getTasks(std::move(getTasks))
, _getUnreadCounts(getUnreadCounts)
{
}
void Query::loadAppointments(const std::shared_ptr<service::RequestState>& state)
{
if (_getAppointments)
{
if (state)
{
auto todayState = std::static_pointer_cast<RequestState>(state);
todayState->appointmentsRequestId = todayState->requestId;
todayState->loadAppointmentsCount++;
}
_appointments = _getAppointments();
_getAppointments = nullptr;
}
}
std::shared_ptr<Appointment> Query::findAppointment(
const service::FieldParams& params, const response::IdType& id)
{
loadAppointments(params.state);
for (const auto& appointment : _appointments)
{
if (appointment->id() == id)
{
return appointment;
}
}
return nullptr;
}
void Query::loadTasks(const std::shared_ptr<service::RequestState>& state)
{
if (_getTasks)
{
if (state)
{
auto todayState = std::static_pointer_cast<RequestState>(state);
todayState->tasksRequestId = todayState->requestId;
todayState->loadTasksCount++;
}
_tasks = _getTasks();
_getTasks = nullptr;
}
}
std::shared_ptr<Task> Query::findTask(
const service::FieldParams& params, const response::IdType& id)
{
loadTasks(params.state);
for (const auto& task : _tasks)
{
if (task->id() == id)
{
return task;
}
}
return nullptr;
}
void Query::loadUnreadCounts(const std::shared_ptr<service::RequestState>& state)
{
if (_getUnreadCounts)
{
if (state)
{
auto todayState = std::static_pointer_cast<RequestState>(state);
todayState->unreadCountsRequestId = todayState->requestId;
todayState->loadUnreadCountsCount++;
}
_unreadCounts = _getUnreadCounts();
_getUnreadCounts = nullptr;
}
}
std::shared_ptr<Folder> Query::findUnreadCount(
const service::FieldParams& params, const response::IdType& id)
{
loadUnreadCounts(params.state);
for (const auto& folder : _unreadCounts)
{
if (folder->id() == id)
{
return folder;
}
}
return nullptr;
}
template <class _Rep, class _Period>
auto operator co_await(std::chrono::duration<_Rep, _Period> delay)
{
struct awaiter
{
const std::chrono::duration<_Rep, _Period> delay;
constexpr bool await_ready() const
{
return true;
}
void await_suspend(coro::coroutine_handle<> h) noexcept
{
h.resume();
}
void await_resume()
{
std::this_thread::sleep_for(delay);
}
};
return awaiter { delay };
}
service::AwaitableObject<std::shared_ptr<object::Node>> Query::getNode(
service::FieldParams params, response::IdType id)
{
// query { node(id: "ZmFrZVRhc2tJZA==") { ...on Task { title } } }
using namespace std::literals;
co_await 100ms;
auto appointment = findAppointment(params, id);
if (appointment)
{
co_return std::make_shared<object::Node>(
std::make_shared<object::Appointment>(std::move(appointment)));
}
auto task = findTask(params, id);
if (task)
{
co_return std::make_shared<object::Node>(std::make_shared<object::Task>(std::move(task)));
}
auto folder = findUnreadCount(params, id);
if (folder)
{
co_return std::make_shared<object::Node>(
std::make_shared<object::Folder>(std::move(folder)));
}
co_return nullptr;
}
template <class _Object, class _Connection>
struct EdgeConstraints
{
using vec_type = std::vector<std::shared_ptr<_Object>>;
using itr_type = typename vec_type::const_iterator;
EdgeConstraints(const std::shared_ptr<service::RequestState>& state, const vec_type& objects)
: _state(state)
, _objects(objects)
{
}
std::shared_ptr<_Connection> operator()(const std::optional<int>& first,
std::optional<response::Value>&& after, const std::optional<int>& last,
std::optional<response::Value>&& before) const
{
auto itrFirst = _objects.cbegin();
auto itrLast = _objects.cend();
if (after)
{
auto afterId = after->release<response::IdType>();
auto itrAfter =
std::find_if(itrFirst, itrLast, [&afterId](const std::shared_ptr<_Object>& entry) {
return entry->id() == afterId;
});
if (itrAfter != itrLast)
{
itrFirst = itrAfter;
}
}
if (before)
{
auto beforeId = before->release<response::IdType>();
auto itrBefore =
std::find_if(itrFirst, itrLast, [&beforeId](const std::shared_ptr<_Object>& entry) {
return entry->id() == beforeId;
});
if (itrBefore != itrLast)
{
itrLast = itrBefore;
++itrLast;
}
}
if (first)
{
if (*first < 0)
{
std::ostringstream error;
error << "Invalid argument: first value: " << *first;
throw service::schema_exception { { service::schema_error { error.str() } } };
}
if (itrLast - itrFirst > *first)
{
itrLast = itrFirst + *first;
}
}
if (last)
{
if (*last < 0)
{
std::ostringstream error;
error << "Invalid argument: last value: " << *last;
throw service::schema_exception { { service::schema_error { error.str() } } };
}
if (itrLast - itrFirst > *last)
{
itrFirst = itrLast - *last;
}
}
std::vector<std::shared_ptr<_Object>> edges(itrLast - itrFirst);
std::copy(itrFirst, itrLast, edges.begin());
return std::make_shared<_Connection>(itrLast<_objects.cend(), itrFirst> _objects.cbegin(),
std::move(edges));
}
private:
const std::shared_ptr<service::RequestState>& _state;
const vec_type& _objects;
};
std::future<std::shared_ptr<object::AppointmentConnection>> Query::getAppointments(
const service::FieldParams& params, std::optional<int> first,
std::optional<response::Value>&& after, std::optional<int> last,
std::optional<response::Value>&& before)
{
auto spThis = shared_from_this();
auto state = params.state;
return std::async(
std::launch::async,
[this, spThis, state](std::optional<int>&& firstWrapped,
std::optional<response::Value>&& afterWrapped,
std::optional<int>&& lastWrapped,
std::optional<response::Value>&& beforeWrapped) {
loadAppointments(state);
EdgeConstraints<Appointment, AppointmentConnection> constraints(state, _appointments);
auto connection = constraints(firstWrapped,
std::move(afterWrapped),
lastWrapped,
std::move(beforeWrapped));
return std::make_shared<object::AppointmentConnection>(connection);
},
std::move(first),
std::move(after),
std::move(last),
std::move(before));
}
std::future<std::shared_ptr<object::TaskConnection>> Query::getTasks(
const service::FieldParams& params, std::optional<int> first,
std::optional<response::Value>&& after, std::optional<int> last,
std::optional<response::Value>&& before)
{
auto spThis = shared_from_this();
auto state = params.state;
return std::async(
std::launch::async,
[this, spThis, state](std::optional<int>&& firstWrapped,
std::optional<response::Value>&& afterWrapped,
std::optional<int>&& lastWrapped,
std::optional<response::Value>&& beforeWrapped) {
loadTasks(state);
EdgeConstraints<Task, TaskConnection> constraints(state, _tasks);
auto connection = constraints(firstWrapped,
std::move(afterWrapped),
lastWrapped,
std::move(beforeWrapped));
return std::make_shared<object::TaskConnection>(connection);
},
std::move(first),
std::move(after),
std::move(last),
std::move(before));
}
std::future<std::shared_ptr<object::FolderConnection>> Query::getUnreadCounts(
const service::FieldParams& params, std::optional<int> first,
std::optional<response::Value>&& after, std::optional<int> last,
std::optional<response::Value>&& before)
{
auto spThis = shared_from_this();
auto state = params.state;
return std::async(
std::launch::async,
[this, spThis, state](std::optional<int>&& firstWrapped,
std::optional<response::Value>&& afterWrapped,
std::optional<int>&& lastWrapped,
std::optional<response::Value>&& beforeWrapped) {
loadUnreadCounts(state);
EdgeConstraints<Folder, FolderConnection> constraints(state, _unreadCounts);
auto connection = constraints(firstWrapped,
std::move(afterWrapped),
lastWrapped,
std::move(beforeWrapped));
return std::make_shared<object::FolderConnection>(connection);
},
std::move(first),
std::move(after),
std::move(last),
std::move(before));
}
std::vector<std::shared_ptr<object::Appointment>> Query::getAppointmentsById(
const service::FieldParams& params, const std::vector<response::IdType>& ids)
{
std::vector<std::shared_ptr<object::Appointment>> result(ids.size());
std::transform(ids.cbegin(),
ids.cend(),
result.begin(),
[this, ¶ms](const response::IdType& id) {
return std::make_shared<object::Appointment>(findAppointment(params, id));
});
return result;
}
std::vector<std::shared_ptr<object::Task>> Query::getTasksById(
const service::FieldParams& params, const std::vector<response::IdType>& ids)
{
std::vector<std::shared_ptr<object::Task>> result(ids.size());
std::transform(ids.cbegin(),
ids.cend(),
result.begin(),
[this, ¶ms](const response::IdType& id) {
return std::make_shared<object::Task>(findTask(params, id));
});
return result;
}
std::vector<std::shared_ptr<object::Folder>> Query::getUnreadCountsById(
const service::FieldParams& params, const std::vector<response::IdType>& ids)
{
std::vector<std::shared_ptr<object::Folder>> result(ids.size());
std::transform(ids.cbegin(),
ids.cend(),
result.begin(),
[this, ¶ms](const response::IdType& id) {
return std::make_shared<object::Folder>(findUnreadCount(params, id));
});
return result;
}
std::shared_ptr<object::NestedType> Query::getNested(service::FieldParams&& params)
{
return std::make_shared<object::NestedType>(std::make_shared<NestedType>(std::move(params), 1));
}
std::vector<std::shared_ptr<object::Expensive>> Query::getExpensive()
{
std::vector<std::shared_ptr<object::Expensive>> result(Expensive::count);
for (auto& entry : result)
{
entry = std::make_shared<object::Expensive>(std::make_shared<Expensive>());
}
return result;
}
TaskState Query::getTestTaskState()
{
return TaskState::Unassigned;
}
std::vector<std::shared_ptr<object::UnionType>> Query::getAnyType(
const service::FieldParams& params, const std::vector<response::IdType>&)
{
loadAppointments(params.state);
std::vector<std::shared_ptr<object::UnionType>> result(_appointments.size());
std::transform(_appointments.cbegin(),
_appointments.cend(),
result.begin(),
[](const auto& appointment) noexcept {
return std::make_shared<object::UnionType>(
std::make_shared<object::Appointment>(appointment));
});
return result;
}
Mutation::Mutation(completeTaskMutation&& mutateCompleteTask)
: _mutateCompleteTask(std::move(mutateCompleteTask))
{
}
std::shared_ptr<object::CompleteTaskPayload> Mutation::applyCompleteTask(
CompleteTaskInput&& input) noexcept
{
return std::make_shared<object::CompleteTaskPayload>(_mutateCompleteTask(std::move(input)));
}
std::optional<double> Mutation::_setFloat = std::nullopt;
double Mutation::getFloat() noexcept
{
return *_setFloat;
}
double Mutation::applySetFloat(double valueArg) noexcept
{
_setFloat = std::make_optional(valueArg);
return valueArg;
}
std::stack<CapturedParams> NestedType::_capturedParams;
NestedType::NestedType(service::FieldParams&& params, int depth)
: depth(depth)
{
_capturedParams.push({ { params.operationDirectives },
params.fragmentDefinitionDirectives->empty()
? service::Directives {}
: service::Directives { params.fragmentDefinitionDirectives->front().get() },
params.fragmentSpreadDirectives->empty()
? service::Directives {}
: service::Directives { params.fragmentSpreadDirectives->front() },
params.inlineFragmentDirectives->empty()
? service::Directives {}
: service::Directives { params.inlineFragmentDirectives->front() },
std::move(params.fieldDirectives) });
}
int NestedType::getDepth() const noexcept
{
return depth;
}
std::shared_ptr<object::NestedType> NestedType::getNested(
service::FieldParams&& params) const noexcept
{
return std::make_shared<object::NestedType>(
std::make_shared<NestedType>(std::move(params), depth + 1));
}
std::stack<CapturedParams> NestedType::getCapturedParams() noexcept
{
auto result = std::move(_capturedParams);
return result;
}
std::mutex Expensive::testMutex {};
std::mutex Expensive::pendingExpensiveMutex {};
std::condition_variable Expensive::pendingExpensiveCondition {};
size_t Expensive::pendingExpensive = 0;
std::atomic<size_t> Expensive::instances = 0;
bool Expensive::Reset() noexcept
{
std::unique_lock pendingExpensiveLock(pendingExpensiveMutex);
pendingExpensive = 0;
pendingExpensiveLock.unlock();
return instances == 0;
}
Expensive::Expensive()
: order(++instances)
{
}
Expensive::~Expensive()
{
--instances;
}
std::future<int> Expensive::getOrder(const service::FieldParams& params) const noexcept
{
return std::async(
params.launch.await_ready() ? std::launch::deferred : std::launch::async,
[](bool blockAsync, int instanceOrder) noexcept {
if (blockAsync)
{
// Block all of the Expensive objects in async mode until the count is reached.
std::unique_lock pendingExpensiveLock(pendingExpensiveMutex);
if (++pendingExpensive < count)
{
pendingExpensiveCondition.wait(pendingExpensiveLock, []() {
return pendingExpensive == count;
});
}
// Wake up the next Expensive object.
pendingExpensiveLock.unlock();
pendingExpensiveCondition.notify_one();
}
return instanceOrder;
},
!params.launch.await_ready(),
static_cast<int>(order));
}
EmptyOperations::EmptyOperations()
: service::Request({}, GetSchema())
{
}
} // namespace graphql::today