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
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
|
// Copyright Epic Games, Inc. All Rights Reserved.
#include <zenhttp/httpserver.h>
#include "servers/httpasio.h"
#include "servers/httpmulti.h"
#include "servers/httpnull.h"
#include "servers/httpsys.h"
#include "zenhttp/httpplugin.h"
#if ZEN_WITH_PLUGINS
# include "transports/asiotransport.h"
# include "transports/dlltransport.h"
# include "transports/winsocktransport.h"
#endif
#include <zenbase/refcount.h>
#include <zencore/compactbinary.h>
#include <zencore/compactbinarybuilder.h>
#include <zencore/compactbinarypackage.h>
#include <zencore/iobuffer.h>
#include <zencore/logging.h>
#include <zencore/stream.h>
#include <zencore/string.h>
#include <zencore/testing.h>
#include <zencore/thread.h>
#include <zenhttp/packageformat.h>
#include <EASTL/span.h>
#include <charconv>
#include <mutex>
#include <string_view>
#include <EASTL/fixed_vector.h>
namespace zen {
using namespace std::literals;
std::string_view
MapContentTypeToString(HttpContentType ContentType)
{
switch (ContentType)
{
default:
case HttpContentType::kUnknownContentType:
case HttpContentType::kBinary:
return "application/octet-stream"sv;
case HttpContentType::kText:
return "text/plain"sv;
case HttpContentType::kJSON:
return "application/json"sv;
case HttpContentType::kCbObject:
return "application/x-ue-cb"sv;
case HttpContentType::kCbPackage:
return "application/x-ue-cbpkg"sv;
case HttpContentType::kCbPackageOffer:
return "application/x-ue-offer"sv;
case HttpContentType::kCompressedBinary:
return "application/x-ue-comp"sv;
case HttpContentType::kYAML:
return "text/yaml"sv;
case HttpContentType::kHTML:
return "text/html"sv;
case HttpContentType::kJavaScript:
return "application/javascript"sv;
case HttpContentType::kCSS:
return "text/css"sv;
case HttpContentType::kPNG:
return "image/png"sv;
case HttpContentType::kIcon:
return "image/x-icon"sv;
case HttpContentType::kXML:
return "application/xml"sv;
}
}
//////////////////////////////////////////////////////////////////////////
//
// Note that in addition to MIME types we accept abbreviated versions, for
// use in suffix parsing as well as for convenience when using curl
static constinit uint32_t HashBinary = HashStringDjb2("application/octet-stream"sv);
static constinit uint32_t HashJson = HashStringDjb2("json"sv);
static constinit uint32_t HashApplicationJson = HashStringDjb2("application/json"sv);
static constinit uint32_t HashApplicationProblemJson = HashStringDjb2("application/problem+json"sv);
static constinit uint32_t HashYaml = HashStringDjb2("yaml"sv);
static constinit uint32_t HashTextYaml = HashStringDjb2("text/yaml"sv);
static constinit uint32_t HashText = HashStringDjb2("text/plain"sv);
static constinit uint32_t HashApplicationCompactBinary = HashStringDjb2("application/x-ue-cb"sv);
static constinit uint32_t HashCompactBinary = HashStringDjb2("ucb"sv);
static constinit uint32_t HashCompactBinaryPackage = HashStringDjb2("application/x-ue-cbpkg"sv);
static constinit uint32_t HashCompactBinaryPackageShort = HashStringDjb2("cbpkg"sv);
static constinit uint32_t HashCompactBinaryPackageOffer = HashStringDjb2("application/x-ue-offer"sv);
static constinit uint32_t HashCompressedBinary = HashStringDjb2("application/x-ue-comp"sv);
static constinit uint32_t HashHtml = HashStringDjb2("html"sv);
static constinit uint32_t HashTextHtml = HashStringDjb2("text/html"sv);
static constinit uint32_t HashJavaScript = HashStringDjb2("js"sv);
static constinit uint32_t HashJavaScriptSourceMap = HashStringDjb2("map"sv); // actually .js.map
static constinit uint32_t HashApplicationJavaScript = HashStringDjb2("application/javascript"sv);
static constinit uint32_t HashCss = HashStringDjb2("css"sv);
static constinit uint32_t HashTextCss = HashStringDjb2("text/css"sv);
static constinit uint32_t HashPng = HashStringDjb2("png"sv);
static constinit uint32_t HashImagePng = HashStringDjb2("image/png"sv);
static constinit uint32_t HashIcon = HashStringDjb2("ico"sv);
static constinit uint32_t HashImageIcon = HashStringDjb2("image/x-icon"sv);
static constinit uint32_t HashXml = HashStringDjb2("application/xml"sv);
std::once_flag InitContentTypeLookup;
struct HashedTypeEntry
{
uint32_t Hash;
HttpContentType Type;
} TypeHashTable[] = {
// clang-format off
{HashBinary, HttpContentType::kBinary},
{HashApplicationCompactBinary, HttpContentType::kCbObject},
{HashCompactBinary, HttpContentType::kCbObject},
{HashCompactBinaryPackage, HttpContentType::kCbPackage},
{HashCompactBinaryPackageShort, HttpContentType::kCbPackage},
{HashCompactBinaryPackageOffer, HttpContentType::kCbPackageOffer},
{HashJson, HttpContentType::kJSON},
{HashApplicationJson, HttpContentType::kJSON},
{HashApplicationProblemJson, HttpContentType::kJSON},
{HashYaml, HttpContentType::kYAML},
{HashTextYaml, HttpContentType::kYAML},
{HashText, HttpContentType::kText},
{HashCompressedBinary, HttpContentType::kCompressedBinary},
{HashHtml, HttpContentType::kHTML},
{HashTextHtml, HttpContentType::kHTML},
{HashJavaScript, HttpContentType::kJavaScript},
{HashApplicationJavaScript, HttpContentType::kJavaScript},
{HashJavaScriptSourceMap, HttpContentType::kJavaScript},
{HashCss, HttpContentType::kCSS},
{HashTextCss, HttpContentType::kCSS},
{HashPng, HttpContentType::kPNG},
{HashImagePng, HttpContentType::kPNG},
{HashIcon, HttpContentType::kIcon},
{HashImageIcon, HttpContentType::kIcon},
{HashXml, HttpContentType::kXML},
// clang-format on
};
HttpContentType
ParseContentTypeImpl(const std::string_view& ContentTypeString)
{
if (!ContentTypeString.empty())
{
size_t ContentEnd = ContentTypeString.find(';');
if (ContentEnd == std::string_view::npos)
{
ContentEnd = ContentTypeString.length();
}
std::string_view ContentString(ContentTypeString.substr(0, ContentEnd));
const uint32_t CtHash = HashStringDjb2(ContentString);
if (auto It = std::lower_bound(std::begin(TypeHashTable),
std::end(TypeHashTable),
CtHash,
[](const HashedTypeEntry& Lhs, const uint32_t Rhs) { return Lhs.Hash < Rhs; });
It != std::end(TypeHashTable))
{
if (It->Hash == CtHash)
{
return It->Type;
}
}
}
return HttpContentType::kUnknownContentType;
}
HttpContentType
ParseContentTypeInit(const std::string_view& ContentTypeString)
{
std::call_once(InitContentTypeLookup, [] {
std::sort(std::begin(TypeHashTable), std::end(TypeHashTable), [](const HashedTypeEntry& Lhs, const HashedTypeEntry& Rhs) {
return Lhs.Hash < Rhs.Hash;
});
// validate that there are no hash collisions
uint32_t LastHash = 0;
for (const auto& Item : TypeHashTable)
{
ZEN_ASSERT(LastHash != Item.Hash);
LastHash = Item.Hash;
}
});
ParseContentType = ParseContentTypeImpl;
return ParseContentTypeImpl(ContentTypeString);
}
HttpContentType (*ParseContentType)(const std::string_view& ContentTypeString) = &ParseContentTypeInit;
bool
TryParseHttpRangeHeader(std::string_view RangeHeader, HttpRanges& Ranges)
{
if (RangeHeader.empty())
{
return false;
}
const size_t Count = Ranges.size();
std::size_t UnitDelim = RangeHeader.find_first_of('=');
if (UnitDelim == std::string_view::npos)
{
return false;
}
// only bytes for now
std::string_view Unit = RangeHeader.substr(0, UnitDelim);
if (Unit != "bytes"sv)
{
return false;
}
std::string_view Tokens = RangeHeader.substr(UnitDelim);
while (!Tokens.empty())
{
// Skip =,
Tokens = Tokens.substr(1);
size_t Delim = Tokens.find_first_of(',');
if (Delim == std::string_view::npos)
{
Delim = Tokens.length();
}
std::string_view Token = Tokens.substr(0, Delim);
Tokens = Tokens.substr(Delim);
Delim = Token.find_first_of('-');
if (Delim == std::string_view::npos)
{
return false;
}
const auto Start = ParseInt<uint32_t>(Token.substr(0, Delim));
const auto End = ParseInt<uint32_t>(Token.substr(Delim + 1));
if (Start.has_value() && End.has_value() && End.value() > Start.value())
{
Ranges.push_back({.Start = Start.value(), .End = End.value()});
}
else if (Start)
{
Ranges.push_back({.Start = Start.value()});
}
else if (End)
{
Ranges.push_back({.End = End.value()});
}
}
return Count != Ranges.size();
}
//////////////////////////////////////////////////////////////////////////
const std::string_view
ToString(HttpVerb Verb)
{
switch (Verb)
{
case HttpVerb::kGet:
return "GET"sv;
case HttpVerb::kPut:
return "PUT"sv;
case HttpVerb::kPost:
return "POST"sv;
case HttpVerb::kDelete:
return "DELETE"sv;
case HttpVerb::kHead:
return "HEAD"sv;
case HttpVerb::kCopy:
return "COPY"sv;
case HttpVerb::kOptions:
return "OPTIONS"sv;
default:
return "???"sv;
}
}
std::string_view
ToString(HttpResponseCode HttpCode)
{
return ReasonStringForHttpResultCode(int(HttpCode));
}
std::string_view
ReasonStringForHttpResultCode(int HttpCode)
{
switch (HttpCode)
{
// 1xx Informational
case 100:
return "Continue"sv;
case 101:
return "Switching Protocols"sv;
// 2xx Success
case 200:
return "OK"sv;
case 201:
return "Created"sv;
case 202:
return "Accepted"sv;
case 204:
return "No Content"sv;
case 205:
return "Reset Content"sv;
case 206:
return "Partial Content"sv;
// 3xx Redirection
case 300:
return "Multiple Choices"sv;
case 301:
return "Moved Permanently"sv;
case 302:
return "Found"sv;
case 303:
return "See Other"sv;
case 304:
return "Not Modified"sv;
case 305:
return "Use Proxy"sv;
case 306:
return "Switch Proxy"sv;
case 307:
return "Temporary Redirect"sv;
case 308:
return "Permanent Redirect"sv;
// 4xx Client errors
case 400:
return "Bad Request"sv;
case 401:
return "Unauthorized"sv;
case 402:
return "Payment Required"sv;
case 403:
return "Forbidden"sv;
case 404:
return "Not Found"sv;
case 405:
return "Method Not Allowed"sv;
case 406:
return "Not Acceptable"sv;
case 407:
return "Proxy Authentication Required"sv;
case 408:
return "Request Timeout"sv;
case 409:
return "Conflict"sv;
case 410:
return "Gone"sv;
case 411:
return "Length Required"sv;
case 412:
return "Precondition Failed"sv;
case 413:
return "Payload Too Large"sv;
case 414:
return "URI Too Long"sv;
case 415:
return "Unsupported Media Type"sv;
case 416:
return "Range Not Satisifiable"sv;
case 417:
return "Expectation Failed"sv;
case 418:
return "I'm a teapot"sv;
case 421:
return "Misdirected Request"sv;
case 422:
return "Unprocessable Entity"sv;
case 423:
return "Locked"sv;
case 424:
return "Failed Dependency"sv;
case 425:
return "Too Early"sv;
case 426:
return "Upgrade Required"sv;
case 428:
return "Precondition Required"sv;
case 429:
return "Too Many Requests"sv;
case 431:
return "Request Header Fields Too Large"sv;
// 5xx Server errors
case 500:
return "Internal Server Error"sv;
case 501:
return "Not Implemented"sv;
case 502:
return "Bad Gateway"sv;
case 503:
return "Service Unavailable"sv;
case 504:
return "Gateway Timeout"sv;
case 505:
return "HTTP Version Not Supported"sv;
case 506:
return "Variant Also Negotiates"sv;
case 507:
return "Insufficient Storage"sv;
case 508:
return "Loop Detected"sv;
case 510:
return "Not Extended"sv;
case 511:
return "Network Authentication Required"sv;
default:
return "Unknown Result"sv;
}
}
//////////////////////////////////////////////////////////////////////////
Ref<IHttpPackageHandler>
HttpService::HandlePackageRequest(HttpServerRequest& HttpServiceRequest)
{
ZEN_UNUSED(HttpServiceRequest);
return Ref<IHttpPackageHandler>();
}
//////////////////////////////////////////////////////////////////////////
HttpServerRequest::HttpServerRequest()
{
}
HttpServerRequest::~HttpServerRequest()
{
}
void
HttpServerRequest::WriteResponse(HttpResponseCode ResponseCode, CbPackage Data)
{
eastl::vector<IoBuffer> ResponseBuffers = FormatPackageMessage(Data);
return WriteResponse(ResponseCode, HttpContentType::kCbPackage, ResponseBuffers);
}
void
HttpServerRequest::WriteResponse(HttpResponseCode ResponseCode, CbObject Data)
{
if (m_AcceptType == HttpContentType::kJSON)
{
ExtendableStringBuilder<1024> Sb;
WriteResponse(ResponseCode, HttpContentType::kJSON, Data.ToJson(Sb).ToView());
}
else if (m_AcceptType == HttpContentType::kYAML)
{
ExtendableStringBuilder<1024> Sb;
WriteResponse(ResponseCode, HttpContentType::kYAML, Data.ToYaml(Sb).ToView());
}
else
{
SharedBuffer Buf = Data.GetBuffer();
std::array<IoBuffer, 1> Buffers{IoBufferBuilder::MakeCloneFromMemory(Buf.GetData(), Buf.GetSize())};
return WriteResponse(ResponseCode, HttpContentType::kCbObject, Buffers);
}
}
void
HttpServerRequest::WriteResponse(HttpResponseCode ResponseCode, CbArray Array)
{
if (m_AcceptType == HttpContentType::kJSON)
{
ExtendableStringBuilder<1024> Sb;
WriteResponse(ResponseCode, HttpContentType::kJSON, Array.ToJson(Sb).ToView());
}
else if (m_AcceptType == HttpContentType::kYAML)
{
ExtendableStringBuilder<1024> Sb;
WriteResponse(ResponseCode, HttpContentType::kYAML, Array.ToYaml(Sb).ToView());
}
else
{
SharedBuffer Buf = Array.GetBuffer();
std::array<IoBuffer, 1> Buffers{IoBufferBuilder::MakeCloneFromMemory(Buf.GetData(), Buf.GetSize())};
return WriteResponse(ResponseCode, HttpContentType::kCbObject, Buffers);
}
}
void
HttpServerRequest::WriteResponse(HttpResponseCode ResponseCode, HttpContentType ContentType, std::string_view ResponseString)
{
return WriteResponse(ResponseCode, ContentType, std::u8string_view{(char8_t*)ResponseString.data(), ResponseString.size()});
}
void
HttpServerRequest::WriteResponse(HttpResponseCode ResponseCode, HttpContentType ContentType, IoBuffer Blob)
{
std::array<IoBuffer, 1> Buffers{Blob};
return WriteResponse(ResponseCode, ContentType, Buffers);
}
void
HttpServerRequest::WriteResponse(HttpResponseCode ResponseCode, HttpContentType ContentType, CompositeBuffer& Payload)
{
eastl::span<const SharedBuffer> Segments = Payload.GetSegments();
eastl::fixed_vector<IoBuffer, 64> Buffers;
Buffers.reserve(Segments.size());
for (auto& Segment : Segments)
{
Buffers.push_back(Segment.AsIoBuffer());
}
WriteResponse(ResponseCode, ContentType, eastl::span<IoBuffer>(begin(Buffers), end(Buffers)));
}
std::string
HttpServerRequest::Decode(std::string_view PercentEncodedString)
{
size_t Length = PercentEncodedString.length();
std::string Decoded;
Decoded.reserve(Length);
size_t Offset = 0;
while (Offset < Length)
{
char C = PercentEncodedString[Offset];
if (C == '%' && (Offset <= (Length - 3)))
{
std::string_view CharHash(&PercentEncodedString[Offset + 1], 2);
uint8_t DecodedChar = 0;
if (ParseHexBytes(CharHash, &DecodedChar))
{
Decoded.push_back((char)DecodedChar);
Offset += 3;
}
else
{
Decoded.push_back(C);
Offset++;
}
}
else
{
Decoded.push_back(C);
Offset++;
}
}
return Decoded;
}
HttpServerRequest::QueryParams
HttpServerRequest::GetQueryParams()
{
QueryParams Params;
const std::string_view QStr = QueryString();
const char* QueryIt = QStr.data();
const char* QueryEnd = QueryIt + QStr.size();
while (QueryIt != QueryEnd)
{
if (*QueryIt == '&')
{
++QueryIt;
continue;
}
size_t QueryLen = ptrdiff_t(QueryEnd - QueryIt);
const std::string_view Query{QueryIt, QueryLen};
size_t DelimIndex = Query.find('&', 0);
if (DelimIndex == std::string_view::npos)
{
DelimIndex = Query.size();
}
std::string_view ThisQuery{QueryIt, DelimIndex};
size_t EqIndex = ThisQuery.find('=', 0);
if (EqIndex != std::string_view::npos)
{
std::string_view Param{ThisQuery.data(), EqIndex};
ThisQuery.remove_prefix(EqIndex + 1);
Params.KvPairs.emplace_back(Param, ThisQuery);
}
QueryIt += DelimIndex;
}
return Params;
}
Oid
HttpServerRequest::SessionId() const
{
if (m_Flags & kHaveSessionId)
{
return m_SessionId;
}
m_SessionId = ParseSessionId();
m_Flags |= kHaveSessionId;
return m_SessionId;
}
uint32_t
HttpServerRequest::RequestId() const
{
if (m_Flags & kHaveRequestId)
{
return m_RequestId;
}
m_RequestId = ParseRequestId();
m_Flags |= kHaveRequestId;
return m_RequestId;
}
CbObject
HttpServerRequest::ReadPayloadObject()
{
if (IoBuffer Payload = ReadPayload())
{
if (m_ContentType == HttpContentType::kJSON)
{
std::string Json(reinterpret_cast<const char*>(Payload.GetData()), Payload.GetSize());
std::string Err;
CbFieldIterator It = LoadCompactBinaryFromJson(Json, Err);
if (Err.empty())
{
return It.AsObject();
}
return CbObject();
}
return LoadCompactBinaryObject(std::move(Payload));
}
return {};
}
CbPackage
HttpServerRequest::ReadPayloadPackage()
{
if (IoBuffer Payload = ReadPayload())
{
return ParsePackageMessage(std::move(Payload));
}
return {};
}
//////////////////////////////////////////////////////////////////////////
void
HttpRequestRouter::AddPattern(const char* Id, const char* Regex)
{
ZEN_ASSERT(m_PatternMap.find(Id) == m_PatternMap.end());
m_PatternMap.insert({Id, Regex});
}
void
HttpRequestRouter::RegisterRoute(const char* Regex, HttpRequestRouter::HandlerFunc_t&& HandlerFunc, HttpVerb SupportedVerbs)
{
ExtendableStringBuilder<128> ExpandedRegex;
ProcessRegexSubstitutions(Regex, ExpandedRegex);
m_Handlers.emplace_back(ExpandedRegex.c_str(), SupportedVerbs, std::move(HandlerFunc), Regex);
}
void
HttpRequestRouter::ProcessRegexSubstitutions(const char* Regex, StringBuilderBase& OutExpandedRegex)
{
size_t RegexLen = strlen(Regex);
for (size_t i = 0; i < RegexLen;)
{
bool matched = false;
if (Regex[i] == '{' && ((i == 0) || (Regex[i - 1] != '\\')))
{
// Might have a pattern reference - find closing brace
for (size_t j = i + 1; j < RegexLen; ++j)
{
if (Regex[j] == '}')
{
std::string Pattern(&Regex[i + 1], j - i - 1);
if (auto it = m_PatternMap.find(Pattern); it != m_PatternMap.end())
{
OutExpandedRegex.Append(it->second.c_str());
}
else
{
// Default to anything goes (or should this just be an error?)
OutExpandedRegex.Append("(.+?)");
}
// skip ahead
i = j + 1;
matched = true;
break;
}
}
}
if (!matched)
{
OutExpandedRegex.Append(Regex[i++]);
}
}
}
bool
HttpRequestRouter::HandleRequest(zen::HttpServerRequest& Request)
{
const HttpVerb Verb = Request.RequestVerb();
std::string_view Uri = Request.RelativeUri();
HttpRouterRequest RouterRequest(Request);
for (const auto& Handler : m_Handlers)
{
if ((Handler.Verbs & Verb) == Verb && regex_match(begin(Uri), end(Uri), RouterRequest.m_Match, Handler.RegEx))
{
Handler.Handler(RouterRequest);
return true; // Route matched
}
}
return false; // No route matched
}
//////////////////////////////////////////////////////////////////////////
HttpRpcHandler::HttpRpcHandler()
{
}
HttpRpcHandler::~HttpRpcHandler()
{
}
void
HttpRpcHandler::AddRpc(std::string_view RpcId, std::function<void(CbObject& RpcArgs)> HandlerFunction)
{
ZEN_UNUSED(RpcId, HandlerFunction);
}
//////////////////////////////////////////////////////////////////////////
enum class HttpServerClass
{
kHttpAsio,
kHttpSys,
kHttpPlugin,
kHttpMulti,
kHttpNull
};
Ref<HttpServer>
CreateHttpServerClass(HttpServerClass Class, const HttpServerConfig& Config)
{
switch (Class)
{
default:
case HttpServerClass::kHttpAsio:
ZEN_INFO("using asio HTTP server implementation");
return CreateHttpAsioServer(Config.ForceLoopback, Config.ThreadCount);
case HttpServerClass::kHttpMulti:
{
ZEN_INFO("using multi HTTP server implementation");
Ref<HttpMultiServer> Server{new HttpMultiServer()};
// This is hardcoded for now, but should be configurable in the future
Server->AddServer(CreateHttpServerClass(HttpServerClass::kHttpSys, Config));
Server->AddServer(CreateHttpServerClass(HttpServerClass::kHttpPlugin, Config));
return Server;
}
#if ZEN_WITH_PLUGINS
case HttpServerClass::kHttpPlugin:
{
ZEN_INFO("using plugin HTTP server implementation");
Ref<HttpPluginServer> Server{CreateHttpPluginServer()};
// This is hardcoded for now, but should be configurable in the future
# if 0
Ref<TransportPlugin> WinsockPlugin{CreateSocketTransportPlugin()};
WinsockPlugin->Configure("port", "8558");
Server->AddPlugin(WinsockPlugin);
# endif
# if 0
Ref<TransportPlugin> AsioPlugin{CreateAsioTransportPlugin()};
AsioPlugin->Configure("port", "8558");
Server->AddPlugin(AsioPlugin);
# endif
# if 1
Ref<DllTransportPlugin> DllPlugin{CreateDllTransportPlugin()};
DllPlugin->LoadDll("winsock");
DllPlugin->ConfigureDll("winsock", "port", "8558");
Server->AddPlugin(DllPlugin);
# endif
return Server;
}
#endif
#if ZEN_WITH_HTTPSYS
case HttpServerClass::kHttpSys:
ZEN_INFO("using http.sys server implementation");
return Ref<HttpServer>(CreateHttpSysServer({.ThreadCount = Config.ThreadCount,
.AsyncWorkThreadCount = Config.HttpSys.AsyncWorkThreadCount,
.IsAsyncResponseEnabled = Config.HttpSys.IsAsyncResponseEnabled,
.IsRequestLoggingEnabled = Config.HttpSys.IsRequestLoggingEnabled,
.IsDedicatedServer = Config.IsDedicatedServer,
.ForceLoopback = Config.ForceLoopback}));
#endif
case HttpServerClass::kHttpNull:
ZEN_INFO("using null HTTP server implementation");
return Ref<HttpServer>(new HttpNullServer);
}
}
Ref<HttpServer>
CreateHttpServer(const HttpServerConfig& Config)
{
using namespace std::literals;
HttpServerClass Class = HttpServerClass::kHttpNull;
#if ZEN_WITH_HTTPSYS
Class = HttpServerClass::kHttpSys;
#else
Class = HttpServerClass::kHttpAsio;
#endif
if (Config.ServerClass == "asio"sv)
{
Class = HttpServerClass::kHttpAsio;
}
else if (Config.ServerClass == "httpsys"sv)
{
Class = HttpServerClass::kHttpSys;
}
else if (Config.ServerClass == "plugin"sv)
{
Class = HttpServerClass::kHttpPlugin;
}
else if (Config.ServerClass == "null"sv)
{
Class = HttpServerClass::kHttpNull;
}
else if (Config.ServerClass == "multi"sv)
{
Class = HttpServerClass::kHttpMulti;
}
return CreateHttpServerClass(Class, Config);
}
//////////////////////////////////////////////////////////////////////////
bool
HandlePackageOffers(HttpService& Service, HttpServerRequest& Request, Ref<IHttpPackageHandler>& PackageHandlerRef)
{
if (Request.RequestVerb() == HttpVerb::kPost)
{
if (Request.RequestContentType() == HttpContentType::kCbPackageOffer)
{
// The client is presenting us with a package attachments offer, we need
// to filter it down to the list of attachments we need them to send in
// the follow-up request
PackageHandlerRef = Service.HandlePackageRequest(Request);
if (PackageHandlerRef)
{
CbObject OfferMessage = LoadCompactBinaryObject(Request.ReadPayload());
eastl::vector<IoHash> OfferCids;
for (auto& CidEntry : OfferMessage["offer"])
{
if (!CidEntry.IsHash())
{
// Should yield bad request response?
ZEN_WARN("found invalid entry in offer");
continue;
}
OfferCids.push_back(CidEntry.AsHash());
}
ZEN_TRACE("request #{} -> filtering offer of {} entries", Request.RequestId(), OfferCids.size());
PackageHandlerRef->FilterOffer(OfferCids);
ZEN_TRACE("request #{} -> filtered to {} entries", Request.RequestId(), OfferCids.size());
CbObjectWriter ResponseWriter;
ResponseWriter.BeginArray("need");
for (const IoHash& Cid : OfferCids)
{
ResponseWriter.AddHash(Cid);
}
ResponseWriter.EndArray();
// Emit filter response
Request.WriteResponse(HttpResponseCode::OK, ResponseWriter.Save());
return true;
}
}
else if (Request.RequestContentType() == HttpContentType::kCbPackage)
{
// Process chunks in package request
PackageHandlerRef = Service.HandlePackageRequest(Request);
// TODO: this should really be done in a streaming fashion, currently this emulates
// the intended flow from an API perspective
if (PackageHandlerRef)
{
PackageHandlerRef->OnRequestBegin();
auto CreateBuffer = [&](const IoHash& Cid, uint64_t Size) -> IoBuffer {
return PackageHandlerRef->CreateTarget(Cid, Size);
};
CbPackage Package = ParsePackageMessage(Request.ReadPayload(), CreateBuffer);
PackageHandlerRef->OnRequestComplete();
}
}
}
return false;
}
//////////////////////////////////////////////////////////////////////////
#if ZEN_WITH_TESTS
TEST_CASE("http.common")
{
using namespace std::literals;
SUBCASE("router")
{
HttpRequestRouter r;
r.AddPattern("a", "[[:alpha:]]+");
r.RegisterRoute(
"{a}",
[&](auto) {},
HttpVerb::kGet);
// struct TestHttpServerRequest : public HttpServerRequest
//{
// TestHttpServerRequest(std::string_view Uri) : m_uri{Uri} {}
//};
// TestHttpServerRequest req{};
// r.HandleRequest(req);
}
SUBCASE("content-type")
{
for (uint8_t i = 0; i < uint8_t(HttpContentType::kCOUNT); ++i)
{
HttpContentType Ct{i};
if (Ct != HttpContentType::kUnknownContentType)
{
CHECK_EQ(Ct, ParseContentType(MapContentTypeToString(Ct)));
}
}
}
}
void
http_forcelink()
{
}
#endif
} // namespace zen
|