-
Notifications
You must be signed in to change notification settings - Fork 8
/
dpt.parse.service.lua
1272 lines (1146 loc) · 41 KB
/
dpt.parse.service.lua
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
-- Parse package
-- This package provides reusable parsing utilities for individual elements of messages
-- Package header
local master = diffusion or {}
if master.parseService ~= nil then
return master.parseService
end
local f_tcp_stream = diffusion.utilities.f_tcp_stream
local f_time_epoch = diffusion.utilities.f_time_epoch
local f_src_port = diffusion.utilities.f_src_port
local f_src_host = diffusion.utilities.f_src_host
local topicInfoTable = diffusion.info.topicInfoTable
local tcpConnections = diffusion.info.tcpConnections
local updateStreamTable = diffusion.info.updateStreamTable
local serviceMessageTable = diffusion.info.serviceMessageTable
local v5 = diffusion.v5
local varint = diffusion.parseCommon.varint
local lengthPrefixedString = diffusion.parseCommon.lengthPrefixedString
local lengthPrefixedBytes = diffusion.parseCommon.lengthPrefixedBytes
local parseVarSessionId = diffusion.parseCommon.parseVarSessionId
local parseTopicDetails = diffusion.parseTopicDetails.parse
local parseOptional = diffusion.parseCommon.parseOptional
local function parseSet( range, valueParser )
local numRange, remaining, num = varint( range )
local set = {}
local length = 0
local index = 1
while index <= num do
local value = valueParser( remaining )
set[index] = value
if value.fullRange ~= nil then
length = length + value.fullRange:len()
else
length = length + value.range:len()
end
index = index + 1
remaining = value.remaining
end
return {
number = { range = numRange, number = num },
set = set,
rangeLength = numRange:len() + length
}, remaining
end
local function parseMap( range, keyParser, valueParser )
local numRange, remaining, num = varint( range )
local map = {}
local length = 0
local index = 1
while index <= num do
local key = keyParser( remaining )
local value = valueParser( key.remaining )
map[index] = {
key = key,
value = value
}
length = length + key.fullRange:len() + value.fullRange:len()
index = index + 1
remaining = value.remaining
end
return {
number = { range = numRange, number = num },
map = map,
rangeLength = numRange:len() + length,
range = range:range( 0, numRange:len() + length )
}, remaining
end
local function parseProperties( range )
local map, remaining = parseMap(
range,
function ( r ) return lengthPrefixedString( r ) end,
function ( r ) return lengthPrefixedString( r ) end
)
return {
number = map.number,
properties = map.map,
rangeLength = map.rangeLength
}, remaining
end
-- Parse a topic specifiation
local function parseTopicSpecification( range )
local type = range:range( 0, 1 )
local properties, remaining = parseProperties( range:range( 1 ) )
return {
type = { type = type:uint(), range = type },
properties = properties
}, remaining
end
local function parseTopicSpecificationInfo( range )
local idRange, remaining, id = varint( range )
local path = lengthPrefixedString( remaining )
local specification = parseTopicSpecification( path.remaining )
topicInfoTable:setInfo( f_tcp_stream(), id, path.range:string(), specification )
return {
range = range,
id = { range = idRange, int = id },
path = { range = path.fullRange, string = path.range:string() },
specification = specification
}
end
-- Parse a set of detail types
local function parseDetailTypeSet( range )
local numberOfDetailTypes = range:range( 0, 1 ):uint()
local set = { length = numberOfDetailTypes }
for i = 0, numberOfDetailTypes - 1 do
set[i] = range:range( 1 + i, 1 )
end
set.range = range:range( 0, numberOfDetailTypes + 1 )
if range:range( 0, numberOfDetailTypes + 1 ):len() == range:len() then
return set, range:range( 0, 0 )
else
return set, range:range( numberOfDetailTypes + 1 )
end
end
-- Parse a client summary
local function parseSummary( range )
local principal = lengthPrefixedString( range )
local clientTypeRange = principal.remaining:range( 0, 1 )
local transportTypeRange = principal.remaining:range( 1, 1 )
return {
principal = principal,
clientType = clientTypeRange,
transportType = transportTypeRange,
range = range:range( 0, principal.fullRange:len() + 2 )
}
end
-- Parse a client location
local function parseLocation( range )
local length = 0
local result = {}
result.address = lengthPrefixedString( range )
length = length + result.address.fullRange:len()
result.hostName = lengthPrefixedString( result.address.remaining )
length = length + result.hostName.fullRange:len()
result.resolvedName = lengthPrefixedString( result.hostName.remaining )
length = length + result.resolvedName.fullRange:len()
result.addressType = result.resolvedName.remaining:range( 0, 1 )
length = length + 1
result.country = lengthPrefixedString( result.resolvedName.remaining:range( 1 ) )
length = length + result.country.fullRange:len()
result.language = lengthPrefixedString( result.country.remaining )
length = length + result.language.fullRange:len()
-- TODO: Turn these into floats
local latitudeRange, longitudeR, latitude = varint( result.language.remaining )
length = length + latitudeRange:len()
local longitudeRange, remaining, longitude = varint( longitudeR )
length = length + longitudeRange:len()
result.remaining = remaining
result.range = range( 0, length )
return result
end
-- Parse session details
local function parseSessionDetails( range )
local hasDetails = range:range( 0, 1 ):uint();
if hasDetails == 0 then
-- No details
return {
count = 0,
range = range:range( 0, 1 )
}
end
local result = {
count = 0
}
local offset = 1
parseOptional( range:range( offset ), function (tvb)
result.count = result.count + 1
result.summary = parseSummary( range:range( offset + 1 ) )
offset = offset + result.summary.range:len() + 1
end )
parseOptional( range:range( offset ), function (tvb)
result.count = result.count + 1
result.location = parseLocation( range:range( offset + 1 ) )
offset = offset + result.location.range:len() + 1
end )
parseOptional( range:range( offset ), function ( tvb )
result.count = result.count + 1
result.connector = lengthPrefixedString( range:range( offset + 1 ) )
offset = offset + result.connector.fullRange:len() + 1
end )
parseOptional( range:range( offset ), function ( tvb )
result.count = result.count + 1
result.server = lengthPrefixedString( range:range( offset + 1 ) )
offset = offset + result.server.fullRange:len() + 1
end )
result.range = range:range( 0, offset )
if offset == range:len() then
return result, range:range( 0, 0 )
else
return result, range:range( offset )
end
end
-- Parse a session details listener notification event
local function parseSessionDetailsEvent( range )
local result = {}
result.sessionListenerEventTypeRange = range:range( 0, 1 )
local eventType = result.sessionListenerEventTypeRange:uint()
if eventType < 125 then
result.closeReasonRange = result.sessionListenerEventTypeRange
end
local sessionId, sessionDetailsR = parseVarSessionId( range:range( 1 ) )
result.sessionId = sessionId
local sessionDetails, conversationR = parseSessionDetails( sessionDetailsR )
result.sessionDetails = sessionDetails
local cIdRange, remaining, cId = varint( conversationR )
result.conversationId = { range = cIdRange, int = cId }
return result
end
-- Parse a session listener registration
local function parseSessionDetailsListenerRegistrationRequest( range )
return parseOptional( range:range( offset ), function ( tvb )
local detailTypeSet, remaining = parseDetailTypeSet( tvb )
local cIdRange, remaining, cId = varint( remaining )
return { conversationId = { range = cIdRange, int = cId }, detailTypeSet = detailTypeSet }
end, function ( tvb )
local cIdRange, remaining, cId = varint( tvb )
return { conversationId = { range = cIdRange, int = cId }, detailTypeSet = { range = range:range( 0, 1 ), length = 0 } }
end )
end
-- Parse a session details lookup request
local function parseGetSessionDetailsRequest( range )
local sessionId, detailTypeSetR = parseVarSessionId( range )
local detailTypeSet = parseDetailTypeSet( detailTypeSetR )
return {
sessionId = sessionId,
set = detailTypeSet
}
end
-- Parse a set queue conflation request
local function parseSetClientQueueConflationRequest( range )
local sessionId, conflateR = parseVarSessionId( range )
local conflateEnabled = conflateR:range( 0 , 1 )
return {
sessionId = sessionId,
conflateEnabledRange = conflateEnabled
}
end
-- Parse a set queue throttler request
local function parseSetClientQueueThrottlerRequest( range )
local sessionId, throttlerR = parseVarSessionId( range )
local throttlerRange = throttlerR:range( 0 , 1 )
local throttlerLimitRange, remaining, throttlerLimit = varint( throttlerR:range( 1 ) )
return {
sessionId = sessionId,
throttlerRange = throttlerRange,
limit = {
range = throttlerLimitRange,
int = throttlerLimit
}
}
end
local function parseCloseClient( range )
local sessionId, reasonR = parseVarSessionId( range )
local reason = lengthPrefixedString( reasonR )
return {
sessionId = sessionId,
reason = reason
}
end
local function parseControlRegistrationParameters( range )
local serviceIdRange, remaining, serviceId = varint( range )
local controlGroup = lengthPrefixedString( remaining )
return {
serviceId = { range = serviceIdRange, int = serviceId },
controlGroup = controlGroup
}, controlGroup.remaining
end
local function parseControlRegistrationRequest( range )
local serviceIdRange, remaining, serviceId = varint( range )
local controlGroup = lengthPrefixedString( remaining )
local cIdRange, remaining, cId = varint( controlGroup.remaining )
return {
serviceId = { range = serviceIdRange, int = serviceId },
controlGroup = controlGroup,
conversationId = { range = cIdRange, int = cId }
}, remaining
end
local function parseAuthenticationControlRegistrationRequest( range )
local result, remaining = parseControlRegistrationParameters( range )
local handlerName = lengthPrefixedString( remaining )
return { controlRegInfo = result, handlerName = handlerName }
end
local function parseTopicControlRegistrationRequest( range )
local result, remaining = parseControlRegistrationParameters( range )
local topicPath = lengthPrefixedString( remaining )
return { controlRegInfo = result, handlerTopicPath = topicPath }
end
local function parseUpdateSourceRegistrationRequest( range )
local cIdRange, remaining, cId = varint( range )
local topicPath = lengthPrefixedString( remaining )
return { conversationId = { range = cIdRange, int = cId }, topicPath = topicPath }
end
local function parseContent( range )
local encodingRange = range:range( 0, 1 )
local lengthRange, remaining, length = varint( range:range( 1 ) )
local bytesRange = remaining
return {
encoding = { range = encodingRange, int = encodingRange:int() },
length = { range = lengthRange, int = length },
bytes = { range = bytesRange }
}
end
local function parseUpdate( range )
local updateTypeRange = range:range( 0, 1 )
local updateType = updateTypeRange:int()
if updateType == 0x00 then
local actionRange = range:range( 1, 1 )
local content = parseContent( range:range( 2 ) )
return {
updateType = { range = updateTypeRange, int = updateType },
updateAction = { range = actionRange, int = actionRange:int() },
content = content
}
else
return {
updateType = { range = updateTypeRange, int = updateType }
}
end
end
local function parseUpdateSourceUpdateRequest( range )
local cIdRange, remaining, cId = varint( range )
local topicPath = lengthPrefixedString( remaining )
local update = parseUpdate( topicPath.remaining )
return { conversationId = { range = cIdRange, int = cId }, topicPath = topicPath, update = update }
end
local function parseNonExclusiveUpdateRequest( range )
local topicPath = lengthPrefixedString( range )
local update = parseUpdate( topicPath.remaining )
return { topicPath = topicPath, update = update }
end
local function parseUpdateSourceStateRequest( range )
local cIdRange, remaining, cId = varint( range )
local oldStateByteRange = remaining:range( 0, 1 )
local newStateByteRange = remaining:range( 1, 1 )
return {
conversationId = { range = cIdRange, int = cId },
oldUpdateSourceState = { range = oldStateByteRange, int = oldStateByteRange:int() },
newUpdateSourceState = { range = newStateByteRange, int = newStateByteRange:int() }
}
end
local function parseSubscriptionNotification( range )
local idRange, remaining, id = varint( range )
local path = lengthPrefixedString( remaining )
local topicDetails = parseTopicDetails( path.remaining )
local tcpStream = f_tcp_stream()
topicInfoTable:setInfo( tcpStream, id, path.range:string(), topicDetails )
local topicInfo = {
range = range,
id = { range = idRange, int = id },
path = { range = path.fullRange, string = path.range:string() },
details = topicDetails
}
return topicInfo
end
local function parseUnsubscriptionNotification( range )
local idRange, remaining, id = varint( range )
local reasonRange, remaining, reason = varint( remaining )
local tcpStream = f_tcp_stream()
local topicName = topicInfoTable:getTopicPath( tcpStream, id )
return {
topic = { name = topicName, range = idRange },
reason = { reason = reason, range = reasonRange }
}
end
local function parseStatus( range )
return { range = range }
end
local function parseUpdateSourceRegistrationResponse( range )
local stateByteRange = range:range( 0, 1 )
return { range = stateByteRange, int = stateByteRange:int() }
end
-- Parse add topic request
local function parseAddTopicRequest( range )
local topicName = lengthPrefixedString( range )
local referenceRange, remaining, reference = varint( topicName.remaining )
local topicDetails, remaining = parseTopicDetails( remaining )
local content
if remaining ~= nil and remaining:range( 0, 1 ):int() == 1 then
content = parseContent( remaining:range( 1 ) )
end
return {
topicName = topicName,
reference = {
range = referenceRange,
int = reference
},
topicDetails = topicDetails,
content = content
}
end
-- Parse add topic request
local function parseTopicAddRequest( range )
local topicName = lengthPrefixedString( range )
local specification = parseTopicSpecification( topicName.remaining )
return {
topicName = topicName,
specification = specification
}
end
local function parseUpdateTopicSet( range )
local topicPath = lengthPrefixedString( range )
local lengthRange, remaining, length = varint( topicPath.remaining )
return {
topicPath = topicPath,
update = {
content = {
length = {
range = lengthRange,
int = length
},
bytes = {
range = remaining
}
}
}
}
end
local function parseUpdateTopicDelta( range )
local topicPath = lengthPrefixedString( range )
local deltaTypeRange, remaining, deltaType = varint( topicPath.remaining )
local lengthRange, remaining, length = varint( remaining )
return {
topicPath = topicPath,
update = {
deltaType = {
range = deltaTypeRange,
int = deltaType
},
content = {
length = {
range = lengthRange,
int = length
},
bytes = {
range = remaining
}
}
}
}
end
local function parseUpdateSourceSet( range )
local cIdRange, remaining, cId = varint( range )
local topicPath = lengthPrefixedString( remaining )
local lengthRange, remaining, length = varint( topicPath.remaining )
return {
conversationId = {
range = cIdRange,
int = cId
},
topicPath = topicPath,
update = {
content = {
length = {
range = lengthRange,
int = length
},
bytes = {
range = remaining
}
}
}
}
end
local function parseUpdateSourceDelta( range )
local cIdRange, remaining, cId = varint( range )
local topicPath = lengthPrefixedString( remaining )
local deltaTypeRange, remainingUpdate, deltaType = varint( topicPath.remaining )
local lengthRange, remaining, length = varint( remainingUpdate )
return {
conversationId = {
range = cIdRange,
int = cId
},
topicPath = topicPath,
update = {
deltaType = {
range = deltaTypeRange,
int = deltaType
},
content = {
length = {
range = lengthRange,
int = length
},
bytes = {
range = remaining
}
}
}
}
end
local function parseMessagingSend( range )
local path = lengthPrefixedString( range )
local dataType = lengthPrefixedString( path.remaining )
local lengthRange, bytesRange, length = varint( dataType.remaining )
return {
path = path,
dataType = dataType,
bytes = {
length = {
range = lengthRange,
length = length
},
range = bytesRange
}
}
end
local function parseMessagingSendToSession( range )
local cIdRange, remaining, cId = varint( range )
local sessionId, remaining = parseVarSessionId( remaining )
local path = lengthPrefixedString( remaining )
local properties, remaining = parseProperties( path.remaining )
local dataType = lengthPrefixedString( remaining )
local lengthRange, bytesRange, length = varint( dataType.remaining )
return {
conversationId = {
range = cIdRange,
int = cId
},
sessionId = sessionId,
path = path,
dataType = dataType,
bytes = {
length = {
range = lengthRange,
length = length
},
range = bytesRange
}
}
end
local function parseMessagingResponse( range )
local dataType = lengthPrefixedString( range )
local lengthRange, bytesRange, length = varint( dataType.remaining )
return {
dataType = dataType,
bytes = {
length = {
range = lengthRange,
length = length
},
range = bytesRange
}
}
end
local function parseRequestControlRegistration( range )
local result, remaining = parseControlRegistrationParameters( range )
local path = lengthPrefixedString( remaining )
local numPropertiesRange, remaining, numProperties = varint( path.remaining )
local properties = {}
local length = 0
local propertyIndex = 1
while propertyIndex <= numProperties do
local propertyKey = lengthPrefixedString( remaining )
properties[propertyIndex] = {
key = propertyKey
}
length = length + propertyKey.fullRange:len()
propertyIndex = propertyIndex + 1
remaining = propertyKey.remaining
end
return {
controlRegInfo = result,
handlerPath = path,
number = { range = numPropertiesRange, number = numProperties },
properties = properties,
rangeLength = numPropertiesRange:len() + length
}
end
local function parseForwardRequest( range )
local sessionId, remaining = parseVarSessionId( range )
local path = lengthPrefixedString( remaining )
local dataType = lengthPrefixedString( path.remaining )
local lengthRange, bytesRange, length = varint( dataType.remaining )
return {
sessionId = sessionId,
path = path,
dataType = dataType,
bytes = {
length = {
range = lengthRange,
length = length
},
range = bytesRange
}
}
end
local function parseTopicNotificationSelection( range )
local cIdRange, remaining, cId = varint( range )
local path = lengthPrefixedString( remaining )
return {
conversationId = {
range = cIdRange,
int = cId
},
path = path
}
end
local function parseTopicNotificationEvent( range )
local cIdRange, remaining, cId = varint( range )
local path = lengthPrefixedString( remaining )
local typeByteRange = path.remaining:range( 0, 1 )
local specification = parseTopicSpecification( path.remaining:range( 1 ) )
return {
conversationId = {
range = cIdRange,
int = cId
},
path = path,
type = typeByteRange,
specification = specification
}
end
local function parseTopicNotificationDescendantEvent( range )
local cIdRange, remaining, cId = varint( range )
local path = lengthPrefixedString( remaining )
local typeByteRange = path.remaining:range( 0, 1 )
return {
conversationId = {
range = cIdRange,
int = cId
},
path = path,
type = typeByteRange
}
end
local function parseUpdateResult( range )
local resultByteRange = range:range( 0, 1 )
return { range = resultByteRange, int = resultByteRange:int() }
end
local function parseAddResult( range )
local resultByteRange = range:range( 0, 1 )
return { range = resultByteRange, int = resultByteRange:int() }
end
local function parseSessionLockAcquisition( range )
local lockName = lengthPrefixedString( range )
local idRange, remaining, id = varint( lockName.remaining )
local scopeByteRange = remaining:range( 0, 1 )
return {
lockName = lockName,
id = { range = idRange, int = id },
scope = scopeByteRange
}
end
local function parseSessionLockCancellation( range )
local lockName = lengthPrefixedString( range )
local idRange, remaining, id = varint( lockName.remaining )
return {
lockName = lockName,
id = { range = idRange, int = id },
fullRange = range( 0, lockName.fullRange:len() + idRange:len() )
}, remaining
end
local function parseConstraint( range )
local type = range:range( 0, 1 )
local result = {
type = type,
}
local typeId = type:uint()
if typeId == 1 then
local constraints, r = parseSet(
range:range( 1 ),
function ( n ) return parseConstraint( n ) end
)
result.constraints = constraints
result.remaining = r
result.range = range:range( 0, range:len() - r:len() )
elseif typeId == 2 then
result.content = lengthPrefixedBytes( range:range( 1 ) )
result.remaining = result.content.remaining
result.range = range:range( 0, 1 + result.content.fullRange:len() )
elseif typeId == 4 then
local lock, remaining = parseSessionLockCancellation( range:range( 1 ) )
result.lock = lock
result.remaining = remaining
result.range = range:range( 0, 1 + result.lock.fullRange:len() )
elseif typeId == 6 then
local with, remaining = parseMap(
range:range( 1 ),
function (r) return lengthPrefixedString(r) end,
function (r) return lengthPrefixedBytes(r) end
)
local without, r = parseSet(
remaining,
function (r) return lengthPrefixedString(r) end
)
result.with = with
result.without = without
result.remaining = r
result.range = range:range( 0, 1 + result.with.rangeLength + result.without.rangeLength )
elseif range:len() > 1 then
result.remaining = range:range( 1 )
result.range = range:range( 0, 1 )
else
result.remaining = range:range( 0, 0 )
result.range = range:range( 0, 1 )
end
return result
end
local function parseTopicSetRequest( range )
local topicPath = lengthPrefixedString( range )
local type = topicPath.remaining:range( 0, 1 )
local lengthRange, remaining, length = varint( topicPath.remaining:range( 1 ) )
local constraint = parseConstraint( remaining:range( length ) )
return {
topicPath = topicPath,
type = { type = type:uint(), range = type },
update = {
content = {
length = {
range = lengthRange,
int = length
},
bytes = {
range = remaining:range( 0, length )
}
}
},
constraint = constraint
}
end
local function parseTopicAndAndSetRequest( range )
local topicPath = lengthPrefixedString( range )
local specification, r = parseTopicSpecification( topicPath.remaining )
local lengthRange, remaining, length = varint( r )
local constraint = parseConstraint( remaining:range( length ) )
return {
topicPath = topicPath,
specification = specification,
update = {
content = {
length = {
range = lengthRange,
int = length
},
bytes = {
range = remaining:range( 0, length )
}
}
},
constraint = constraint
}
end
local function parseCreateUpdateStreamRequest( range, tcpStream, conversation )
local topicPath = lengthPrefixedString( range )
local type = topicPath.remaining:range( 0, 1 )
local constraint = parseConstraint( topicPath.remaining:range( 1 ) )
updateStreamTable:recordCreateRequest( tcpStream, conversation, topicPath.string )
return {
topicPath = topicPath,
type = { type = type:uint(), range = type },
constraint = constraint
}
end
local function parseCreateUpdateStreamAndSetRequest( range, tcpStream, conversation )
local topicPath = lengthPrefixedString( range )
local type = topicPath.remaining:range( 0, 1 )
local lengthRange, remaining, length = varint( topicPath.remaining:range( 1 ) )
local constraint = parseConstraint( remaining:range( length ) )
updateStreamTable:recordCreateRequest( tcpStream, conversation, topicPath.string )
return {
topicPath = topicPath,
type = { type = type:uint(), range = type },
update = {
content = {
length = {
range = lengthRange,
int = length
},
bytes = {
range = remaining:range( 0, length )
}
}
},
constraint = constraint
}
end
local function parseStreamAddTopicRequest( range, tcpStream, conversation )
local topicPath = lengthPrefixedString( range )
local specification, r = parseTopicSpecification( topicPath.remaining )
local constraint = parseConstraint( r )
updateStreamTable:recordCreateRequest( tcpStream, conversation, topicPath.string )
return {
topicPath = topicPath,
specification = specification,
constraint = constraint
}
end
local function parseStreamAddAndSetTopicRequest( range, tcpStream, conversation )
local topicPath = lengthPrefixedString( range )
local specification, r = parseTopicSpecification( topicPath.remaining )
local lengthRange, remaining, length = varint( r )
local constraint = parseConstraint( remaining:range( length ) )
updateStreamTable:recordCreateRequest( tcpStream, conversation, topicPath.string )
return {
topicPath = topicPath,
specification = specification,
update = {
content = {
length = {
range = lengthRange,
int = length
},
bytes = {
range = remaining:range( 0, length )
}
}
},
constraint = constraint
}
end
local function parseUpdateStreamId( range )
local topicIdRange, instanceOnwards, topicId = varint( range )
local instanceRange, partitionOnwards, instance = varint( instanceOnwards )
local partitionIdRange, generationOnwards, partitionId = varint( partitionOnwards )
local generationRange, r, generation = varint( generationOnwards )
local length = topicIdRange:len() + instanceRange:len() + partitionIdRange:len() + generationRange:len()
return {
topicId = { range = topicIdRange, int = topicId },
instance = { range = instanceRange, int = instance },
partition = { range = partitionIdRange, int = partitionId },
generation = { range = generationRange, int = generation },
range = range:range( 0, length )
}, r
end
local function parseCreateUpdateStreamResponse( range, conversation )
local updateStreamId = parseUpdateStreamId( range )
local updateStream = updateStreamTable:recordCreateResponse( f_tcp_stream(), conversation, updateStreamId )
local path
if updateStream ~= nil then
path = updateStream.path
end
return {
updateStreamInfo = {
updateStreamId = updateStreamId,
path = path
}
}
end
local function parseUpdateStreamAddTopicResponse( range, conversation )
local creationResultRange, remaining, creationResult = varint( range )
local updateStreamId = parseUpdateStreamId( remaining )
local updateStream = updateStreamTable:recordCreateResponse( f_tcp_stream(), conversation, updateStreamId )
local path
if updateStream ~= nil then
path = updateStream.path
end
return {
addResult = { range = creationResultRange, int = creationResult },
updateStreamInfo = {
updateStreamId = updateStreamId,
path = path
}
}
end
local function parseUpdateStreamRequest( range )
local updateStreamId, remaining = parseUpdateStreamId( range )
local bytes = lengthPrefixedBytes( remaining )
local path
local updateStream = updateStreamTable:getUpdateStream( updateStreamId )
if updateStream ~= nil then
path = updateStream.path
end
return {
updateStreamInfo = {
updateStreamId = updateStreamId,
path = path
},
update = {
content = bytes
}
}
end
local function parseServiceRequest( serviceBodyRange, service, conversation, result )
local tcpStream = f_tcp_stream()
local session = tcpConnections[tcpStream]
-- Store the request so the response time can be calculated
local isClient = session.client:matches( f_src_host(), f_src_port() )
if isClient then
-- Request is from the client so the client created the conversation Id
serviceMessageTable:addRequest( tcpStream, session.client, conversation, f_time_epoch() )
else
-- Request is from the server so the server created the conversation Id
serviceMessageTable:addRequest( tcpStream, session.server, conversation, f_time_epoch() )
end
-- Parse the request for service specific information
if service == v5.SERVICE_FETCH then
local selector = lengthPrefixedString( serviceBodyRange )
result.selector = { range = selector.fullRange, string = selector.string }
elseif service == v5.SERVICE_SUBSCRIBE then