-
Notifications
You must be signed in to change notification settings - Fork 7
/
hpack.hpp
1117 lines (956 loc) · 36.3 KB
/
hpack.hpp
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
#pragma once
#include <cstdint>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <utility>
#include <vector>
#include <array>
#include <deque>
#include <map>
#include <limits>
#include <string>
namespace HPACK
{
typedef std::pair< const std::string, const std::string > header_t;
typedef std::vector< bool > bits_t;
static const std::array< header_t, 62 > predefined_headers = {
{
header_t("INVALIDINDEX", "INVALIDINDEX"), header_t(":authority", ""), header_t(":method", "GET"),
header_t(":method", "POST"), header_t(":path", "/"), header_t(":path", "/index.html"),
header_t(":scheme", "http"), header_t(":scheme", "https"), header_t(":status", "200"),
header_t(":status", "204"), header_t(":status", "206"), header_t(":status", "304"),
header_t(":status", "400"), header_t(":status", "404"), header_t(":status", "500"),
header_t("accept-charset", ""), header_t("accept-encoding", "gzip, deflate"), header_t("accept-language", ""),
header_t("accept-ranges", ""), header_t("accept", ""), header_t("access-control-allow-origin", ""),
header_t("age", ""), header_t("allow", ""), header_t("authorization", ""),
header_t("cache-control", ""), header_t("content-disposition", ""), header_t("content-encoding", ""),
header_t("content-language", ""), header_t("content-length", ""), header_t("content-location", ""),
header_t("content-range", ""), header_t("content-type", ""), header_t("cookie", ""),
header_t("date", ""), header_t("etag", ""), header_t("expect", ""),
header_t("expires", ""), header_t("from", ""), header_t("host", ""),
header_t("if-match", ""), header_t("if-modified-since", ""), header_t("if-none-match", ""),
header_t("if-range", ""), header_t("if-unmodified-since", ""), header_t("last-modified", ""),
header_t("link", ""), header_t("location", ""), header_t("max-forwards", ""),
header_t("proxy-authenticate", ""), header_t("proxy-authorization", ""), header_t("range", ""),
header_t("referer", ""), header_t("refresh", ""), header_t("retry-after", ""),
header_t("server", ""), header_t("set-cookie", ""), header_t("strict-transport-security", ""),
header_t("transfer-encoding", ""), header_t("user-agent", ""), header_t("vary", ""),
header_t("via", ""), header_t("www-authenticate", "")
}
};
// 256 chars plus end of string
static const std::array< bits_t, 257 > huffman_table = {
{
{ 1,1,1,1,1,1,1,1,1,1,0,0,0 }, // 0
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0 }, // 1
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0 }, // 2
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1 }, // 3
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0 }, // 4
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1 }, // 5
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0 }, // 6
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1 }, // 7
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0 }, // 8
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0 }, // 9
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0 }, // 10
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1 }, // 11
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0 }, // 12
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1 }, // 13
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1 }, // 14
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0 }, // 15
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1 }, // 16
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0 }, // 17
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 }, // 18
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0 }, // 19
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1 }, // 20
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0 }, // 21
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 }, // 22
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1 }, // 23
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0 }, // 24
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1 }, // 25
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0 }, // 26
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1 }, // 27
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0 }, // 28
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1 }, // 29
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0 }, // 30
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1 }, // 31
{ 0,1,0,1,0,0 }, // 32 ' '
{ 1,1,1,1,1,1,1,0,0,0 }, // 33 '!'
{ 1,1,1,1,1,1,1,0,0,1 }, // 34 '"'
{ 1,1,1,1,1,1,1,1,1,0,1,0 }, // 35 '#'
{ 1,1,1,1,1,1,1,1,1,1,0,0,1 }, // 36 '$'
{ 0,1,0,1,0,1 }, // 37 '%'
{ 1,1,1,1,1,0,0,0 }, // 38 '&'
{ 1,1,1,1,1,1,1,1,0,1,0 }, // 39 '''
{ 1,1,1,1,1,1,1,0,1,0 }, // 40 '('
{ 1,1,1,1,1,1,1,0,1,1 }, // 41 ')'
{ 1,1,1,1,1,0,0,1 }, // 42 '*'
{ 1,1,1,1,1,1,1,1,0,1,1 }, // 43 '+'
{ 1,1,1,1,1,0,1,0 }, // 44 ','
{ 0,1,0,1,1,0 }, // 45 '-'
{ 0,1,0,1,1,1 }, // 46 '.'
{ 0,1,1,0,0,0 }, // 47 '/'
{ 0,0,0,0,0 }, // 48 '0'
{ 0,0,0,0,1 }, // 49 '1'
{ 0,0,0,1,0 }, // 50 '2'
{ 0,1,1,0,0,1 }, // 51 '3'
{ 0,1,1,0,1,0 }, // 52 '4'
{ 0,1,1,0,1,1 }, // 53 '5'
{ 0,1,1,1,0,0 }, // 54 '6'
{ 0,1,1,1,0,1 }, // 55 '7'
{ 0,1,1,1,1,0 }, // 56 '8'
{ 0,1,1,1,1,1 }, // 57 '9'
{ 1,0,1,1,1,0,0 }, // 58 ':'
{ 1,1,1,1,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,0,0 },
{ 1,0,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,0,1,0 },
{ 1,0,0,0,0,1 },
{ 1,0,1,1,1,0,1 },
{ 1,0,1,1,1,1,0 },
{ 1,0,1,1,1,1,1 },
{ 1,1,0,0,0,0,0 },
{ 1,1,0,0,0,0,1 },
{1,1,0,0,0,1,0 },
{ 1,1,0,0,0,1,1 },
{ 1,1,0,0,1,0,0 },
{ 1,1,0,0,1,0,1 },
{ 1,1,0,0,1,1,0 },
{ 1,1,0,0,1,1,1 },
{ 1,1,0,1,0,0,0 },
{ 1,1,0,1,0,0,1 },
{ 1,1,0,1,0,1,0 },
{ 1,1,0,1,0,1,1 },
{ 1,1,0,1,1,0,0 },
{ 1,1,0,1,1,0,1 },
{ 1,1,0,1,1,1,0 },
{ 1,1,0,1,1,1,1 },
{ 1,1,1,0,0,0,0 },
{ 1,1,1,0,0,0,1 },
{ 1,1,1,0,0,1,0 },
{ 1,1,1,1,1,1,0,0 },
{ 1,1,1,0,0,1,1 },
{ 1,1,1,1,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,0,0 },
{ 1,0,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,0,1 },
{ 0,0,0,1,1 },
{ 1,0,0,0,1,1 },
{ 0,0,1,0,0 },
{ 1,0,0,1,0,0 },
{ 0,0,1,0,1 },
{ 1,0,0,1,0,1 },
{ 1,0,0,1,1,0 },
{ 1,0,0,1,1,1 },
{ 0,0,1,1,0 },
{ 1,1,1,0,1,0,0 },
{ 1,1,1,0,1,0,1 },
{ 1,0,1,0,0,0 },
{ 1,0,1,0,0,1 },
{ 1,0,1,0,1,0 },
{ 0,0,1,1,1 },
{ 1,0,1,0,1,1 },
{ 1,1,1,0,1,1,0 },
{ 1,0,1,1,0,0 },
{ 0,1,0,0,0 },
{ 0,1,0,0,1 },
{ 1,0,1,1,0,1 },
{ 1,1,1,0,1,1,1 },
{ 1,1,1,1,0,0,0 },
{ 1,1,1,1,0,0,1 },
{ 1,1,1,1,0,1,0 },
{ 1,1,1,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0 },
{ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 }
}
};
class huffman_node_t
{
private:
protected:
huffman_node_t* m_left;
huffman_node_t* m_right;
int16_t m_code;
public:
huffman_node_t(huffman_node_t* l = nullptr, huffman_node_t* r = nullptr, int16_t c = -1) : m_left(l), m_right(r), m_code(c) { }
virtual ~huffman_node_t(void) { m_left = nullptr; m_right = nullptr; m_code = 0; return; }
int16_t code(void) const { return m_code; }
void code(int16_t c) { m_code = c; return; }
huffman_node_t* left(void) { return m_left; }
void left(huffman_node_t* l) { m_left = l; return; }
huffman_node_t* right(void) { return m_right; }
void right(huffman_node_t* r) { m_right = r; return; }
};
class huffman_tree_t
{
private:
protected:
huffman_node_t* m_root;
void
delete_node( huffman_node_t* n )
{
if ( nullptr != n->right() )
delete_node(n->right());
if ( nullptr != n->left() )
delete_node(n->left());
// just delete
delete n;
return;
}
public:
huffman_tree_t(void) : m_root(new huffman_node_t)
{
for ( std::size_t idx = 0; idx < huffman_table.size(); idx++ ) {
const bits_t& bits = huffman_table.at(idx);
huffman_node_t* current = m_root;
for ( const auto& bit : bits ) {
if ( true == bit ) {
if ( nullptr == current->right() )
current->right(new huffman_node_t);
current = current->right();
} else {
if ( nullptr == current->left() )
current->left(new huffman_node_t);
current = current->left();
}
}
current->code(static_cast< int16_t >( idx ));
}
}
virtual ~huffman_tree_t(void)
{
delete_node(m_root);
return;
}
std::string
decode(const std::string& src)
{
std::string dst("");
huffman_node_t* current(m_root);
if ( src.length() > std::numeric_limits< unsigned int >::max() )
throw std::invalid_argument("HPACK::huffman_tree_t::decode(): Overly long input string");
for ( unsigned int idx = 0; idx < src.length(); idx++ ) {
for ( int8_t j = 7; j >= 0; j-- ) {
if ( ( src[ idx ] & ( 1 << j ) ) > 0 ) {
if ( nullptr == current->right() )
throw std::runtime_error("HPACK::huffman_tree_t::decode(): Internal state error (right == nullptr)");
current = current->right();
} else {
if ( nullptr == current->left() )
throw std::runtime_error("HPACK::huffman_tree_t::decode(): Internal state error (left == nullptr)");
current = current->left();
}
if ( current->code() >= 0 ) {
uint16_t code = current->code();
if ( 257 == code )
dst += static_cast< uint8_t >( ( ( code & 0xFF00 ) >> 8 ) & 0xFF );
dst += static_cast< uint8_t >( code & 0xFF );
current = m_root;
}
}
}
return dst;
}
};
class ringtable_t
{
private:
protected:
uint64_t m_max;
std::deque< header_t > m_queue;
public:
// 4096 is the default table size per the HTTPv2 RFC
ringtable_t(void) : m_max(4096) { }
ringtable_t(uint64_t m) : m_max(m) { }
virtual ~ringtable_t(void) { }
void
max(uint64_t m)
{
m_max = m;
// the RFC dictates that we do this here,
// so we do.
while ( length() > m_max ) {
m_queue.pop_back();
}
return;
}
inline uint64_t
max(void) const
{
return m_max;
}
inline uint64_t
entries_count(void) const
{
return m_queue.size();
}
inline uint64_t
length(void) const
{
uint64_t size(0);
for ( auto& h : m_queue ) {
uint64_t nl(h.first.length());
uint64_t vl(h.second.length());
uint64_t tl(0);
// In practice it should basically never occur
// that either of these exceptions are thrown and
// its probably safe to remove the checks in most instances
if ( vl > std::numeric_limits< uint64_t >::max() ||
nl > std::numeric_limits< uint64_t >::max() - vl )
throw std::runtime_error("HPACK::ringtable_t::length() Additive integer overflow encountered");
tl = nl + vl;
if ( tl > std::numeric_limits< uint64_t >::max() - size )
throw std::runtime_error("HPACK::ringtable_t::length() Additive integer overflow encountered");
size += tl;
}
return size;
}
void
add(const header_t& h)
{
uint64_t size(h.first.length() + h.second.length());
// In practice it should be basically implausible to trip these exceptions because
// you would need 2^(sizeof(uint64_t)*8) bytes of memory to be in use, which in itself
// will likely fail long before then. In other words its probably safe to remove
// these checks for the forseeable future, but I left them in because technically I
// should check even if its an absurd condition.
if ( h.first.length() > std::numeric_limits< uint64_t >::max() - h.second.length() )
throw std::runtime_error("HPACK::ringtable_t::add(): Additive integer overflow encountered.");
// Again the RFC dictates when we resize the queue.
while ( length() >= m_max ) {
m_queue.pop_back();
}
m_queue.push_front(h);
return;
}
void
add(const std::string& n, const std::string& v)
{
header_t h(n, v);
add(h);
return;
}
void
add(const char* n, const char* v)
{
std::string name(n), value(v);
if ( nullptr == n || nullptr == v )
throw std::runtime_error("HPACK::ringtable_t::add(): Invalid nullptr parameter(s)");
add(name, value);
return;
}
const header_t&
at(uint64_t idx)
{
if ( idx > m_queue.size() ) {
// It's not clear these checks even entirely make sense
// the concern was that someone passes in an out-of-bounds
// index, but thats because the static and dynamic
// tables have their indices flattened into one, so we
// attempt to address that by subtracting the static
// headers index size if we are out of bounds, which
// might yield a totally bogus index due to implementation
// bug asking for an invalid index that just happens to line
// up.
if ( idx < predefined_headers.size() )
throw std::invalid_argument("HPACK::ringtable_t::at(): Invalid/out-of-bounds index specified");
idx -= predefined_headers.size();
if ( idx > m_queue.size() )
throw std::invalid_argument("HPACK::ringtable_t::at(): Invalid/out-of-bounds index specified");
}
return m_queue.at(static_cast< std::size_t >( idx ));
}
bool
find(const header_t& h, int64_t& index) const
{
index = -1;
if ( index > std::numeric_limits< std::size_t >::max() )
throw std::invalid_argument("HPACK::ringtable_t::find(): Invalid/overlarge index which results in truncation");
for ( std::size_t idx = 0; idx < m_queue.size(); idx++ ) {
if ( !h.first.compare(m_queue.at(idx).first) && !h.second.compare(m_queue.at(idx).second) ) {
index = predefined_headers.size() + idx;
return true;
} else if ( !h.first.compare(m_queue.at(idx).first) ) {
index = predefined_headers.size() + idx;
return false;
}
}
return false;
}
const header_t&
get_header(const std::size_t index) const
{
if ( index < predefined_headers.size() ) {
return predefined_headers.at(index);
} else if ( index > predefined_headers.size() && index < predefined_headers.size() + m_queue.size() )
return m_queue.at(index - predefined_headers.size());
throw std::runtime_error("HPACK::ringtable_t::get_header(): Invalid index/header not found");
}
};
class huffman_encoder_t
{
private:
uint8_t m_byte;
uint8_t m_count;
protected:
inline bool
write_bit(uint8_t bit)
{
m_byte |= bit;
m_count--;
if (0 == m_count ) {
m_count = 8;
return true;
} else
m_byte <<= 1;
return false;
}
public:
huffman_encoder_t(void) : m_byte(0), m_count(8) { }
virtual ~huffman_encoder_t(void) { }
std::vector< uint8_t >
encode(std::vector< uint8_t >& src)
{
std::vector< uint8_t > ret(0);
for ( auto& byte : src ) {
bits_t bits = huffman_table.at(byte);
for ( decltype(auto) bit : bits ) {
if ( true == write_bit(bit) ) {
ret.push_back(m_byte);
m_byte = 0;
m_count = 8;
}
}
}
// Apparently the remainder unused bits
// are to be set to 1, some sources refer
// to this as the EOS bit, but the code
// for EOS is like 30-bits of 1's so its
// clearly not the EOS code.
if ( 8 != m_count && 0 != m_count) {
m_byte = ( m_byte << ( m_count - 1 ) );
m_byte |= ( 0xFF >> ( 8 - m_count ) );
ret.push_back(m_byte);
m_byte = 0;
m_count = 8;
}
return ret;
}
std::vector< uint8_t >
encode(const std::string& src)
{
std::vector< uint8_t > s(src.begin(), src.end());
return encode(s);
}
std::vector< uint8_t >
encode(const char* ptr)
{
std::string str(ptr);
if ( nullptr == ptr )
throw std::invalid_argument("HPACK::huffman_encoder_t::encode(): Invalid nullptr parameter");
return encode(str);
}
};
/*! \Class The HPACK decoder class.
* \Brief A wrapper class that ties together the static, dynamic tables and huffman
* encoding such that one can pass in a HTTPv2 header block and retrieve a map of strings
* that container the headers sent.
*
* \Warning Never Indexed code paths under tested.
*/
class decoder_t
{
private:
protected:
std::map< std::string, std::string > m_headers;
ringtable_t m_dynamic;
huffman_tree_t m_huffman;
typedef std::vector< uint8_t >::iterator dec_vec_itr_t;
void
decode_integer(dec_vec_itr_t& beg, const dec_vec_itr_t& end, uint32_t& dst, uint8_t N)
{
const uint16_t two_N = static_cast< uint16_t >( std::pow(2, N) - 1 );
dec_vec_itr_t& current(beg);
if ( current == end )
throw std::invalid_argument("HPACK::decoder_t::decode_integer(): Attempted to decode integer when at end of input");
dst = ( *current & two_N );
if ( dst == two_N ) {
uint64_t M = 0;
for (current++; current < end; current++ ) {
dst += ( ( *current & 0x7F ) << M );
M += 7;
if ( !( *current & 0x80 ) )
break;
}
}
beg = current+1;
return;
}
std::string
parse_string(dec_vec_itr_t& itr, const dec_vec_itr_t& end)
{
std::string dst;
bool huff(( *itr & 0x80 ) == 0x80 ? true : false);
unsigned int len = 0;
decode_integer(itr, end, len, 7);
if (std::distance(itr, end) < len)
throw std::invalid_argument("HPACK::decoder_t::parse_string(): string length exceeds length of input");
std::copy(itr, itr + len, std::back_inserter(dst));
itr += len;
if ( true == huff )
dst = m_huffman.decode(dst);
return dst;
}
public:
/*!
\fn encoder_t(uint64_t max = 4096)
\Brief Constructs the encoder
\param max the maximum size of the dynamic table; unbounded and allowed to exceed RFC sizes
*/
decoder_t(int64_t max = 4096) : m_dynamic(max) { }
virtual ~decoder_t(void) { }
/*!
\fn bool decode(const std::string&)
\Brief Decodes the HTTPv2 Header Block contained within the parameter
\param str the HTTPv2 Header Block
\return True if decoding was successful, false if an error such as a protocol decoding error was encountered.
\Warning Never indexed code paths were under tested.
*/
bool
decode(const std::string& str)
{
return decode(std::vector< uint8_t >(str.begin(), str.end()));
}
/*!
\fn bool decode(const std::string&)
\Brief Decodes the HTTPv2 Header Block contained within the parameter
\param ptr the HTTPv2 Header Block
\return True if decoding was successful, false if an error such as a protocol decoding error was encountered.
\Warning Never indexed code paths were under tested.
*/
bool
decode(const char* ptr)
{
if ( nullptr == ptr )
throw std::invalid_argument("HPACK::decoder_t::decode(): Invalid nullptr parameter");
return decode(std::string(ptr));
}
/*!
\fn bool decode(const std::string&)
\Brief Decodes the HTTPv2 Header Block contained within the parameter
\param data the HTTPv2 Header Block
\return True if decoding was successful, false if an error such as a protocol decoding error was encountered.
\Warning Never indexed code paths were under tested.
*/
bool
decode(std::vector< uint8_t > data)
{
if ( !data.size() )
return false;
for ( decltype(auto) itr = data.begin(); itr != data.end(); /* itr++ */ ) {
if ( 0x20 == ( *itr & 0xE0 ) ) { // 6.3 Dynamic Table update
uint32_t size(0);
decode_integer(itr, data.end(), size, 5);
if ( size > m_dynamic.max() ) {
// decoding error
return false;
}
m_dynamic.max(size);
} else if ( ( *itr & 0x80 ) ) { // 6.1 Indexed Header Field Representation
uint32_t index(0);
decode_integer(itr, data.end(), index, 7);
if ( 0 == index ) {
// decoding error
return false;
}
m_headers[ m_dynamic.get_header(index).first ] = m_dynamic.get_header(index).second;
} else {
uint32_t index(0);
std::string n("");
if ( 0x40 == ( *itr & 0xC0 ) ) // 6.2.1 Literal Header Field with Incremental Indexing
decode_integer(itr, data.end(), index, 6);
else // 6.2.2 Literal Header Field without Indexing
decode_integer(itr, data.end(), index, 4);
if ( 0 != index ) {
header_t h = m_dynamic.get_header(index);
n = h.first;
} else {
n = parse_string(itr, data.end());
}
auto value = parse_string(itr, data.end());
auto existing = m_headers.find(n);
if (existing != m_headers.end())
{
// Note: In practice, the "Set-Cookie" header field([COOKIE]) often appears in a response message across multiple field lines and does not use the list syntax, violating the above requirements on multiple field lines with the same field name.Since it cannot be combined into a single field value, recipients ought to handle "Set-Cookie" as a special case while processing fields. (See Appendix A.2.3 of[Kri2001] for details.)
if (n == "set-cookie" || n == "www-authenticate" || n == "proxy-authenticate")
{
existing->second += "\n" + value;
}
else
{
existing->second = value;
// either maybe fail the whole thing
}
}
else
{
m_headers[n] = value;
}
}
}
return true;
}
/*!
\fn const std::map< std::string, std::string >& headers(void) const
\Brief Retrieves the interally managed header map of decoded headers
\Return The map of the decoded headers
*/
const std::map< std::string, std::string >&
headers(void) const
{
return m_headers;
}
};
#define INDEXED_BIT_PATTERN 0x80
#define LITERAL_INDEXED_BIT_PATTERN 0x40
#define LITERAL_WITHOUT_INDEXING_BIT_PATTERN 0x00
#define LITERAL_NEVER_INDEXED_BIT_PATTERN 0x10
#define HUFFMAN_ENCODED 0x80
/*! \Class The HPACK encoder class.
* \Brief A wrapper class that ties together the ringtable_t dynamic table implementation
* with the prior static table such that one can simply add(name, value) into an
* internally managed buffer (a std::vector< uint8_t >) which can be retrieved at
* the end of operations. Huffman encoding and dynamic table references are handled
* automatically;
*
* \Warning Never Indexed code paths untested.
*/
class encoder_t
{
private:
protected:
std::vector< uint8_t > m_buf;
ringtable_t m_dynamic;
huffman_encoder_t m_huffman;
void
huff_encode(const std::string& str)
{
std::vector< uint8_t > huffbuff(0);
std::size_t len(0);
huffbuff = m_huffman.encode(str);
if ( 128 > huffbuff.size() )
m_buf.push_back(static_cast< uint8_t >( HUFFMAN_ENCODED | huffbuff.size() ));
else {
std::vector< uint8_t > tmp;
encode_integer(tmp, huffbuff.size(), 7);
tmp.front() |= HUFFMAN_ENCODED;
m_buf.insert(m_buf.end(), tmp.begin(), tmp.end());
}
m_buf.insert(m_buf.end(), huffbuff.begin(), huffbuff.end());
return;
}
bool
find(const header_t& h, int64_t& index)
{
int64_t saved_index(-1);
index = -1;
for ( uint64_t idx = 1; idx < predefined_headers.size(); idx++ ) {
if ( !h.first.compare(predefined_headers.at(static_cast< std::size_t >( idx )).first) &&
!h.second.compare(predefined_headers.at(static_cast< std::size_t >( idx )).second) ) {
index = idx;
return true;
} else if ( !h.first.compare(predefined_headers.at(static_cast< std::size_t >( idx )).first) ) {
index = idx;
}
}
saved_index = index;
if ( true == m_dynamic.find(h, index) )
return true;
else if ( -1 != index )
return false;
if ( -1 != saved_index )
index = saved_index;
return false;
}
uint64_t
encode_integer(std::vector< uint8_t >& dst, uint32_t I, uint8_t N)
{
const uint16_t two_N = static_cast< uint16_t >( std::pow(2, N) - 1 );
if ( I < two_N ) {
dst.push_back(static_cast< uint8_t >( I ));
return 1;
} else {
I -= two_N;
dst.push_back(static_cast< uint8_t >( two_N ));
while ( I >= 128 ) {
dst.push_back(static_cast< uint8_t >( ( I & 0x7F ) | 0x80 ));
I >>= 7;
}
dst.push_back(static_cast< uint8_t >( I ));
return dst.size();
}
// unreached
throw std::runtime_error("HPACK::encoder_t::encode_integer(): Impossible code path");
}
public:
/*!
\fn encoder_t(uint64_t max = 4096)
\Brief Constructs the encoder
\param max the maximum size of the dynamic table; unbounded and allowed to exceed RFC sizes
*/
encoder_t(uint64_t max = 4096) : m_dynamic(max) { }
virtual ~encoder_t(void) { }
/*!
\fn void max_table_size(uint64_t max)
\Brief Resizes the dynamic table
\param max the maximum size of the dynamic table; unbounded and allowed to exceed RFC sizes
*/
void
max_table_size(uint64_t max)
{
m_dynamic.max(max);
return;
}
/*!
\fn inline uint64_t max_table_size(void) const
\Brief Retrieve the size of dynamic table
\return max the maximum size of the dynamic table; unbounded and allowed to exceed RFC sizes
*/
inline uint64_t