aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/httpserver.cpp
blob: b28682375eadabe9c359d8cd9fa48a9e666960e9 (plain) (blame)
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
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
// 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/compactbinaryutil.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 <charconv>
#include <mutex>
#include <span>
#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;

		case HttpContentType::kProtobuf:
			return "application/x-protobuf"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);
static constinit uint32_t HashProtobuf					= HashStringDjb2("application/x-protobuf"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},
	{HashProtobuf,					HttpContentType::kProtobuf},
	// 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)
{
	std::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)
{
	std::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, std::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();
		}
		CbValidateError ValidationError = CbValidateError::None;
		if (CbObject ResponseObject = ValidateAndReadCompactBinaryObject(std::move(Payload), ValidationError);
			ValidationError == CbValidateError::None)
		{
			return ResponseObject;
		}
	}
	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());
	ZEN_ASSERT(!m_IsFinalized);

	m_PatternMap.insert({Id, Regex});
}

void
HttpRequestRouter::AddMatcher(const char* Id, std::function<bool(std::string_view)>&& Matcher)
{
	ZEN_ASSERT(m_MatcherNameMap.find(Id) == m_MatcherNameMap.end());
	ZEN_ASSERT(!m_IsFinalized);

	const int MatcherIndex = gsl::narrow_cast<int>(m_MatcherFunctions.size());
	m_MatcherFunctions.push_back(Matcher);
	m_MatcherNameMap.insert({Id, MatcherIndex});
}

void
HttpRequestRouter::RegisterRoute(const char* UriPattern, HttpRequestRouter::HandlerFunc_t&& HandlerFunc, HttpVerb SupportedVerbs)
{
	ZEN_ASSERT(!m_IsFinalized);

	if (ExtendableStringBuilder<128> ExpandedRegex; ProcessRegexSubstitutions(UriPattern, ExpandedRegex))
	{
		// Regex route
		m_RegexHandlers.emplace_back(ExpandedRegex.c_str(), SupportedVerbs, std::move(HandlerFunc), UriPattern);
	}
	else
	{
		// New-style regex-free route. More efficient and should be used for everything eventually

		int RegexLen = gsl::narrow_cast<int>(strlen(UriPattern));

		int i = 0;

		std::vector<int> MatcherIndices;

		while (i < RegexLen)
		{
			if (UriPattern[i] == '{')
			{
				bool IsComplete	  = false;
				int	 PatternStart = i + 1;
				while (++i < RegexLen)
				{
					if (UriPattern[i] == '}')
					{
						std::string_view Pattern(&UriPattern[PatternStart], i - PatternStart);
						if (auto it = m_MatcherNameMap.find(std::string(Pattern)); it != m_MatcherNameMap.end())
						{
							// It's a match
							MatcherIndices.push_back(it->second);
							IsComplete = true;
							++i;
							break;
						}
						else
						{
							throw std::runtime_error(fmt::format("unknown matcher pattern '{}' in URI pattern '{}'", Pattern, UriPattern));
						}
					}
				}
				if (!IsComplete)
				{
					throw std::runtime_error(fmt::format("unterminated matcher pattern in URI pattern '{}'", UriPattern));
				}
			}
			else
			{
				if (UriPattern[i] == '/')
				{
					throw std::runtime_error(fmt::format("unexpected '/' in literal segment of URI pattern '{}'", UriPattern));
				}

				int SegmentStart = i;
				while (++i < RegexLen && UriPattern[i] != '/')
					;

				std::string_view Segment(&UriPattern[SegmentStart], (i - SegmentStart));
				int				 LiteralIndex = gsl::narrow_cast<int>(m_Literals.size());
				m_Literals.push_back(std::string(Segment));
				MatcherIndices.push_back(-1 - LiteralIndex);
			}

			if (i < RegexLen && UriPattern[i] == '/')
			{
				++i;  // skip slash
			}
		}

		m_MatcherEndpoints.emplace_back(std::move(MatcherIndices), SupportedVerbs, std::move(HandlerFunc), UriPattern);
	}
}

std::string_view
HttpRouterRequest::GetCapture(uint32_t Index) const
{
	if (!m_CapturedSegments.empty())
	{
		ZEN_ASSERT(Index < m_CapturedSegments.size());
		return m_CapturedSegments[Index];
	}

	ZEN_ASSERT(Index < m_Match.size());

	const auto& Match = m_Match[Index];

	return std::string_view(&*Match.first, Match.second - Match.first);
}

bool
HttpRequestRouter::ProcessRegexSubstitutions(const char* Regex, StringBuilderBase& OutExpandedRegex)
{
	size_t RegexLen = strlen(Regex);

	bool HasRegex = false;

	std::vector<std::string> UnknownPatterns;

	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());
						HasRegex = true;
					}
					else
					{
						UnknownPatterns.push_back(Pattern);
					}

					// skip ahead
					i = j + 1;

					matched = true;

					break;
				}
			}
		}

		if (!matched)
		{
			OutExpandedRegex.Append(Regex[i++]);
		}
	}

	if (HasRegex)
	{
		if (UnknownPatterns.size() > 0)
		{
			std::string UnknownList;
			for (const auto& Pattern : UnknownPatterns)
			{
				if (!UnknownList.empty())
				{
					UnknownList += ", ";
				}
				UnknownList += "'";
				UnknownList += Pattern;
				UnknownList += "'";
			}

			throw std::runtime_error(fmt::format("unknown pattern(s) {} in regex route '{}'", UnknownList, Regex));
		}

		return true;
	}

	return false;
}

bool
HttpRequestRouter::HandleRequest(zen::HttpServerRequest& Request)
{
	if (!m_IsFinalized)
	{
		m_IsFinalized = true;
	}

	const HttpVerb Verb = Request.RequestVerb();

	std::string_view  Uri = Request.RelativeUri();
	HttpRouterRequest RouterRequest(Request);

	// First try new-style matcher routes

	for (const auto& Handler : m_MatcherEndpoints)
	{
		if ((Handler.Verbs & Verb) == Verb)
		{
			size_t					UriPos	 = 0;
			const size_t			UriLen	 = Uri.length();
			const std::vector<int>& Matchers = Handler.ComponentIndices;
			bool					IsMatch	 = true;

			std::vector<std::string_view> CapturedSegments;

			CapturedSegments.emplace_back(Uri);

			for (int MatcherIndex : Matchers)
			{
				if (UriPos >= UriLen)
				{
					IsMatch = false;
					break;
				}

				if (MatcherIndex < 0)
				{
					// Literal match
					int				   LitIndex = -MatcherIndex - 1;
					const std::string& LitStr	= m_Literals[LitIndex];
					size_t			   LitLen	= LitStr.length();

					if (Uri.substr(UriPos, LitLen) == LitStr)
					{
						UriPos += LitLen;
					}
					else
					{
						IsMatch = false;
						break;
					}
				}
				else
				{
					// Matcher function
					size_t SegmentStart = UriPos;
					while (UriPos < UriLen && Uri[UriPos] != '/')
					{
						++UriPos;
					}

					std::string_view Segment = Uri.substr(SegmentStart, UriPos - SegmentStart);

					if (m_MatcherFunctions[MatcherIndex](Segment))
					{
						CapturedSegments.push_back(Segment);
					}
					else
					{
						IsMatch = false;
						break;
					}
				}

				// Skip slash
				if (UriPos < UriLen && Uri[UriPos] == '/')
				{
					++UriPos;
				}
			}

			if (IsMatch && UriPos == UriLen)
			{
				RouterRequest.m_CapturedSegments = std::move(CapturedSegments);
				Handler.Handler(RouterRequest);

				return true;  // Route matched
			}
		}
	}

	// Old-style regex routes

	for (const auto& Handler : m_RegexHandlers)
	{
		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);
}

//////////////////////////////////////////////////////////////////////////

Ref<HttpServer>
CreateHttpServerClass(const std::string_view ServerClass, const HttpServerConfig& Config)
{
	if (ServerClass == "asio"sv)
	{
		ZEN_INFO("using asio HTTP server implementation")
		return CreateHttpAsioServer(Config.ForceLoopback, Config.ThreadCount);
	}
#if ZEN_WITH_HTTPSYS
	else if (ServerClass == "httpsys"sv)
	{
		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
	else if (ServerClass == "null"sv)
	{
		ZEN_INFO("using null HTTP server implementation")
		return Ref<HttpServer>(new HttpNullServer);
	}
	else
	{
		ZEN_WARN("unknown HTTP server implementation '{}', falling back to default", ServerClass)

#if ZEN_WITH_HTTPSYS
		return CreateHttpServerClass("httpsys"sv, Config);
#else
		return CreateHttpServerClass("asio"sv, Config);
#endif
	}
}

#if ZEN_WITH_PLUGINS
Ref<HttpServer>
CreateHttpServerPlugin(const HttpServerPluginConfig& PluginConfig)
{
	const std::string& PluginName = PluginConfig.PluginName;

	ZEN_INFO("using '{}' plugin HTTP server implementation", PluginName)

	if (PluginName.starts_with("builtin:"sv))
	{
#	if 0
		Ref<TransportPlugin> Plugin = {};
		if (PluginName == "builtin:winsock"sv)
		{
			Plugin = CreateSocketTransportPlugin();
		}
		else if (PluginName == "builtin:asio"sv)
		{
			Plugin = CreateAsioTransportPlugin();
		}
		else
		{
			ZEN_WARN("Unknown builtin plugin '{}'", PluginName)
			return {};
		}

		ZEN_ASSERT(!Plugin.IsNull());

		for (const std::pair<std::string, std::string>& Option : PluginConfig.PluginOptions)
		{
			Plugin->Configure(Option.first.c_str(), Option.second.c_str());
		}

		Ref<HttpPluginServer> Server{CreateHttpPluginServer()};
		Server->AddPlugin(Plugin);
		return Server;
#	else
		ZEN_WARN("Builtin plugin '{}' is not supported", PluginName)
		return {};
#	endif
	}

	Ref<DllTransportPlugin> DllPlugin{CreateDllTransportPlugin()};
	if (!DllPlugin->LoadDll(PluginName))
	{
		return {};
	}

	for (const std::pair<std::string, std::string>& Option : PluginConfig.PluginOptions)
	{
		DllPlugin->ConfigureDll(PluginName, Option.first.c_str(), Option.second.c_str());
	}

	Ref<HttpPluginServer> Server{CreateHttpPluginServer()};
	Server->AddPlugin(DllPlugin);
	return Server;
}
#endif

Ref<HttpServer>
CreateHttpServer(const HttpServerConfig& Config)
{
	using namespace std::literals;

#if ZEN_WITH_PLUGINS
	if (Config.PluginConfigs.empty())
	{
		return CreateHttpServerClass(Config.ServerClass, Config);
	}
	else
	{
		Ref<HttpMultiServer> Server{new HttpMultiServer()};
		Server->AddServer(CreateHttpServerClass(Config.ServerClass, Config));

		for (const HttpServerPluginConfig& PluginConfig : Config.PluginConfigs)
		{
			Ref<HttpServer> PluginServer = CreateHttpServerPlugin(PluginConfig);
			if (!PluginServer.IsNull())
			{
				Server->AddServer(PluginServer);
			}
		}

		return Server;
	}
#else
	return CreateHttpServerClass(Config.ServerClass, Config);
#endif
}

//////////////////////////////////////////////////////////////////////////

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)
			{
				CbValidateError ValidationError = CbValidateError::None;
				if (CbObject OfferMessage = ValidateAndReadCompactBinaryObject(IoBuffer(Request.ReadPayload()), ValidationError);
					ValidationError == CbValidateError::None)
				{
					std::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());
				}
				else
				{
					Request.WriteResponse(HttpResponseCode::BadRequest,
										  HttpContentType::kText,
										  fmt::format("Invalid request payload: '{}'", ToString(ValidationError)));
				}
				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;

	struct TestHttpServerRequest : public HttpServerRequest
	{
		TestHttpServerRequest(std::string_view Uri) { m_Uri = Uri; }
		virtual IoBuffer ReadPayload() override { return IoBuffer(); }
		virtual void	 WriteResponse(HttpResponseCode ResponseCode, HttpContentType ContentType, std::span<IoBuffer> Blobs) override
		{
			ZEN_UNUSED(ResponseCode, ContentType, Blobs);
		}
		virtual void WriteResponse(HttpResponseCode ResponseCode) override { ZEN_UNUSED(ResponseCode); }
		virtual void WriteResponse(HttpResponseCode ResponseCode, HttpContentType ContentType, std::u8string_view ResponseString) override
		{
			ZEN_UNUSED(ResponseCode, ContentType, ResponseString);
		}
		virtual void WriteResponseAsync(std::function<void(HttpServerRequest&)>&& ContinuationHandler) override
		{
			ZEN_UNUSED(ContinuationHandler);
		}
		virtual Oid		 ParseSessionId() const override { return Oid(); }
		virtual uint32_t ParseRequestId() const override { return 0; }
	};

	SUBCASE("router-regex")
	{
		bool					 HandledA  = false;
		bool					 HandledAA = false;
		std::vector<std::string> Captures;
		auto					 Reset = [&] {
			Captures.clear();
			HandledA = HandledAA = false;
		};

		HttpRequestRouter r;
		r.AddPattern("a", "([[:alpha:]]+)");
		r.RegisterRoute(
			"{a}",
			[&](auto& Req) {
				HandledA = true;
				Captures = {std::string(Req.GetCapture(1))};
			},
			HttpVerb::kGet);

		r.RegisterRoute(
			"{a}/{a}",
			[&](auto& Req) {
				HandledAA = true;
				Captures  = {std::string(Req.GetCapture(1)), std::string(Req.GetCapture(2))};
			},
			HttpVerb::kGet);

		{
			Reset();
			TestHttpServerRequest req{"abc"sv};
			r.HandleRequest(req);
			CHECK(HandledA);
			CHECK(!HandledAA);
			REQUIRE_EQ(Captures.size(), 1);
			CHECK_EQ(Captures[0], "abc"sv);
		}

		{
			Reset();
			TestHttpServerRequest req{"abc/def"sv};
			r.HandleRequest(req);
			CHECK(!HandledA);
			CHECK(HandledAA);
			REQUIRE_EQ(Captures.size(), 2);
			CHECK_EQ(Captures[0], "abc"sv);
			CHECK_EQ(Captures[1], "def"sv);
		}

		{
			Reset();
			TestHttpServerRequest req{"123"sv};
			r.HandleRequest(req);
			CHECK(!HandledA);
		}

		{
			Reset();
			TestHttpServerRequest req{"a123"sv};
			r.HandleRequest(req);
			CHECK(!HandledA);
		}
	}

	SUBCASE("router-matcher")
	{
		bool					 HandledA	  = false;
		bool					 HandledAA	  = false;
		bool					 HandledAB	  = false;
		bool					 HandledAandB = false;
		std::vector<std::string> Captures;
		auto					 Reset = [&] {
			HandledA = HandledAA = HandledAB = HandledAandB = false;
			Captures.clear();
		};

		HttpRequestRouter r;
		r.AddMatcher("a", [](std::string_view In) -> bool { return In.length() % 2 == 0; });
		r.AddMatcher("b", [](std::string_view In) -> bool { return In.length() % 3 == 0; });
		r.RegisterRoute(
			"{a}",
			[&](auto& Req) {
				HandledA = true;
				Captures = {std::string(Req.GetCapture(1))};
			},
			HttpVerb::kGet);
		r.RegisterRoute(
			"{a}/{a}",
			[&](auto& Req) {
				HandledAA = true;
				Captures  = {std::string(Req.GetCapture(1)), std::string(Req.GetCapture(2))};
			},
			HttpVerb::kGet);
		r.RegisterRoute(
			"{a}/{b}",
			[&](auto& Req) {
				HandledAB = true;
				Captures  = {std::string(Req.GetCapture(1)), std::string(Req.GetCapture(2))};
			},
			HttpVerb::kGet);
		r.RegisterRoute(
			"{a}/and/{b}",
			[&](auto& Req) {
				HandledAandB = true;
				Captures	 = {std::string(Req.GetCapture(1)), std::string(Req.GetCapture(2))};
			},
			HttpVerb::kGet);

		{
			Reset();
			TestHttpServerRequest req{"ab"sv};
			r.HandleRequest(req);
			CHECK(HandledA);
			CHECK(!HandledAA);
			CHECK(!HandledAB);

			REQUIRE_EQ(Captures.size(), 1);
			CHECK_EQ(Captures[0], "ab"sv);
		}

		{
			Reset();
			TestHttpServerRequest req{"ab/def"sv};
			r.HandleRequest(req);
			CHECK(!HandledA);
			CHECK(!HandledAA);
			CHECK(HandledAB);
			REQUIRE_EQ(Captures.size(), 2);
			CHECK_EQ(Captures[0], "ab"sv);
			CHECK_EQ(Captures[1], "def"sv);
		}

		{
			Reset();
			TestHttpServerRequest req{"ab/and/def"sv};
			r.HandleRequest(req);
			CHECK(!HandledA);
			CHECK(!HandledAA);
			CHECK(!HandledAB);
			CHECK(HandledAandB);
			REQUIRE_EQ(Captures.size(), 2);
			CHECK_EQ(Captures[0], "ab"sv);
			CHECK_EQ(Captures[1], "def"sv);
		}

		{
			Reset();
			TestHttpServerRequest req{"123"sv};
			r.HandleRequest(req);
			CHECK(!HandledA);
			CHECK(!HandledAA);
			CHECK(!HandledAB);
		}

		{
			Reset();
			TestHttpServerRequest req{"a123"sv};
			r.HandleRequest(req);
			CHECK(HandledA);
			CHECK(!HandledAA);
			CHECK(!HandledAB);
		}
	}

	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