forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amqp_methods.go
783 lines (736 loc) · 21.4 KB
/
amqp_methods.go
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
package amqp
import (
"encoding/binary"
"strconv"
"strings"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
)
func connectionStartMethod(m *amqpMessage, args []byte) (bool, bool) {
major := args[0]
minor := args[1]
properties := make(common.MapStr)
next, err, exists := getTable(properties, args, 2)
if err {
//failed to get de peer-properties, size may be wrong, let's quit
logp.Warn("Failed to parse server properties in connection.start method")
return false, false
}
mechanisms, next, err := getShortString(args, next+4, binary.BigEndian.Uint32(args[next:next+4]))
if err {
logp.Warn("Failed to get connection mechanisms")
return false, false
}
locales, _, err := getShortString(args, next+4, binary.BigEndian.Uint32(args[next:next+4]))
if err {
logp.Warn("Failed to get connection locales")
return false, false
}
m.method = "connection.start"
m.isRequest = true
m.fields = common.MapStr{
"version-major": major,
"version-minor": minor,
"mechanisms": mechanisms,
"locales": locales,
}
//if there is a server properties table, add it
if exists {
m.fields["server-properties"] = properties
}
return true, true
}
func connectionStartOkMethod(m *amqpMessage, args []byte) (bool, bool) {
properties := make(common.MapStr)
next, err, exists := getTable(properties, args, 0)
if err {
//failed to get de peer-properties, size may be wrong, let's quit
logp.Warn("Failed to parse server properties in connection.start method")
return false, false
}
mechanism, next, err := getShortString(args, next+1, uint32(args[next]))
if err {
logp.Warn("Failed to get connection mechanism from client")
return false, false
}
_, next, err = getShortString(args, next+4, binary.BigEndian.Uint32(args[next:next+4]))
if err {
logp.Warn("Failed to get connection response from client")
return false, false
}
locale, _, err := getShortString(args, next+1, uint32(args[next]))
if err {
logp.Warn("Failed to get connection locale from client")
return false, false
}
m.isRequest = false
m.fields = common.MapStr{
"mechanism": mechanism,
"locale": locale,
}
//if there is a client properties table, add it
if exists {
m.fields["client-properties"] = properties
}
return true, true
}
func connectionTuneMethod(m *amqpMessage, args []byte) (bool, bool) {
m.isRequest = true
m.method = "connection.tune"
//parameters are not parsed here, they are further negotiated by the server
//in the connection.tune-ok method
return true, true
}
func connectionTuneOkMethod(m *amqpMessage, args []byte) (bool, bool) {
m.fields = common.MapStr{
"channel-max": binary.BigEndian.Uint16(args[0:2]),
"frame-max": binary.BigEndian.Uint32(args[2:6]),
"heartbeat": binary.BigEndian.Uint16(args[6:8]),
}
return true, true
}
func connectionOpenMethod(m *amqpMessage, args []byte) (bool, bool) {
m.isRequest = true
m.method = "connection.open"
host, _, err := getShortString(args, 1, uint32(args[0]))
if err {
logp.Warn("Failed to get virtual host from client")
return false, false
}
m.fields = common.MapStr{"virtual-host": host}
return true, true
}
func connectionCloseMethod(m *amqpMessage, args []byte) (bool, bool) {
err := getCloseInfo(args, m)
if err {
return false, false
}
m.method = "connection.close"
m.isRequest = true
return true, true
}
func channelOpenMethod(m *amqpMessage, args []byte) (bool, bool) {
m.method = "channel.open"
m.isRequest = true
return true, true
}
func channelFlowMethod(m *amqpMessage, args []byte) (bool, bool) {
m.method = "channel.flow"
m.isRequest = true
return true, true
}
func channelFlowOkMethod(m *amqpMessage, args []byte) (bool, bool) {
params := getBitParams(args[0])
m.fields = common.MapStr{"active": params[0]}
return true, true
}
func channelCloseMethod(m *amqpMessage, args []byte) (bool, bool) {
m.method = "channel.close"
m.isRequest = true
err := getCloseInfo(args, m)
if err {
return false, false
}
return true, true
}
//function to fetch fields from channel close and connection close
func getCloseInfo(args []byte, m *amqpMessage) bool {
code := binary.BigEndian.Uint16(args[0:2])
m.isRequest = true
replyText, nextOffset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Failed to get error reply text")
return true
}
m.fields = common.MapStr{
"reply-code": code,
"reply-text": replyText,
"class-id": binary.BigEndian.Uint16(args[nextOffset : nextOffset+2]),
"method-id": binary.BigEndian.Uint16(args[nextOffset+2 : nextOffset+4]),
}
return false
}
func queueDeclareMethod(m *amqpMessage, args []byte) (bool, bool) {
name, offset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of queue in queue declaration")
return false, false
}
m.isRequest = true
m.method = "queue.declare"
params := getBitParams(args[offset])
m.request = name
m.fields = common.MapStr{
"queue": name,
"passive": params[0],
"durable": params[1],
"exclusive": params[2],
"auto-delete": params[3],
"no-wait": params[4],
}
if args[offset+1] != frameEndOctet && m.parseArguments {
arguments := make(common.MapStr)
_, err, exists := getTable(arguments, args, offset+1)
if !err && exists {
m.fields["arguments"] = arguments
} else if err {
m.notes = append(m.notes, "Failed to parse additional arguments")
}
}
return true, true
}
func queueDeclareOkMethod(m *amqpMessage, args []byte) (bool, bool) {
name, nextOffset, err := getShortString(args, 1, uint32(args[0]))
if err {
logp.Warn("Error getting name of queue in queue confirmation")
return false, false
}
m.method = "queue.declare-ok"
m.fields = common.MapStr{
"queue": name,
"consumer-count": binary.BigEndian.Uint32(args[nextOffset+4:]),
"message-count": binary.BigEndian.Uint32(args[nextOffset : nextOffset+4]),
}
return true, true
}
func queueBindMethod(m *amqpMessage, args []byte) (bool, bool) {
queue, offset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of queue in queue bind")
return false, false
}
m.isRequest = true
exchange, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Error getting name of queue in queue bind")
return false, false
}
routingKey, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Error getting name of queue in queue bind")
return false, false
}
params := getBitParams(args[offset])
m.method = "queue.bind"
m.request = strings.Join([]string{queue, exchange}, " ")
m.fields = common.MapStr{
"queue": queue,
"routing-key": routingKey,
"no-wait": params[0],
}
if len(exchange) > 0 {
m.fields["exchange"] = exchange
}
if args[offset+1] != frameEndOctet && m.parseArguments {
arguments := make(common.MapStr)
_, err, exists := getTable(arguments, args, offset+1)
if !err && exists {
m.fields["arguments"] = arguments
} else if err {
m.notes = append(m.notes, "Failed to parse additional arguments")
}
}
return true, true
}
func queueUnbindMethod(m *amqpMessage, args []byte) (bool, bool) {
queue, offset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of queue in queue unbind")
return false, false
}
exchange, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Error getting name of queue in queue unbind")
return false, false
}
routingKey, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Error getting name of queue in queue unbind")
return false, false
}
m.isRequest = true
m.method = "queue.unbind"
m.request = strings.Join([]string{queue, exchange}, " ")
m.fields = common.MapStr{
"queue": queue,
"routing-key": routingKey,
}
if len(exchange) > 0 {
m.fields["exchange"] = exchange
}
if args[offset+1] != frameEndOctet && m.parseArguments {
arguments := make(common.MapStr)
_, err, exists := getTable(arguments, args, offset+1)
if !err && exists {
m.fields["arguments"] = arguments
} else if err {
m.notes = append(m.notes, "Failed to parse additional arguments")
}
}
return true, true
}
func queuePurgeMethod(m *amqpMessage, args []byte) (bool, bool) {
queue, nextOffset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of queue in queue purge")
return false, false
}
m.isRequest = true
params := getBitParams(args[nextOffset])
m.method = "queue.purge"
m.request = queue
m.fields = common.MapStr{
"queue": queue,
"no-wait": params[0],
}
return true, true
}
func queuePurgeOkMethod(m *amqpMessage, args []byte) (bool, bool) {
m.method = "queue.purge-ok"
m.fields = common.MapStr{
"message-count": binary.BigEndian.Uint32(args[0:4]),
}
return true, true
}
func queueDeleteMethod(m *amqpMessage, args []byte) (bool, bool) {
queue, nextOffset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of queue in queue delete")
return false, false
}
m.isRequest = true
params := getBitParams(args[nextOffset])
m.method = "queue.delete"
m.request = queue
m.fields = common.MapStr{
"queue": queue,
"if-unused": params[0],
"if-empty": params[1],
"no-wait": params[2],
}
return true, true
}
func queueDeleteOkMethod(m *amqpMessage, args []byte) (bool, bool) {
m.method = "queue.delete-ok"
m.fields = common.MapStr{
"message-count": binary.BigEndian.Uint32(args[0:4]),
}
return true, true
}
func exchangeDeclareMethod(m *amqpMessage, args []byte) (bool, bool) {
exchange, offset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of exchange in exchange declare")
return false, false
}
exchangeType, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Error getting name of routing key in exchange declare")
return false, false
}
params := getBitParams(args[offset])
m.method = "exchange.declare"
m.isRequest = true
m.request = exchange
if exchangeType == "" {
exchangeType = "direct"
}
m.fields = common.MapStr{
"exchange": exchange,
"exchange-type": exchangeType,
"passive": params[0],
"durable": params[1],
"no-wait": params[4],
}
if args[offset+1] != frameEndOctet && m.parseArguments {
arguments := make(common.MapStr)
_, err, exists := getTable(arguments, args, offset+1)
if !err && exists {
m.fields["arguments"] = arguments
} else if err {
m.notes = append(m.notes, "Failed to parse additional arguments")
}
}
return true, true
}
func exchangeDeleteMethod(m *amqpMessage, args []byte) (bool, bool) {
exchange, nextOffset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of exchange in exchange delete")
return false, false
}
m.method = "exchange.delete"
m.isRequest = true
params := getBitParams(args[nextOffset])
m.request = exchange
m.fields = common.MapStr{
"exchange": exchange,
"if-unused": params[0],
"no-wait": params[1],
}
return true, true
}
//this is a method exclusive to RabbitMQ
func exchangeBindMethod(m *amqpMessage, args []byte) (bool, bool) {
m.method = "exchange.bind"
err := exchangeBindUnbindInfo(m, args)
if err {
return false, false
}
return true, true
}
//this is a method exclusive to RabbitMQ
func exchangeUnbindMethod(m *amqpMessage, args []byte) (bool, bool) {
m.method = "exchange.unbind"
err := exchangeBindUnbindInfo(m, args)
if err {
return false, false
}
return true, true
}
func exchangeBindUnbindInfo(m *amqpMessage, args []byte) bool {
destination, offset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of destination in exchange bind/unbind")
return true
}
source, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Error getting name of source in exchange bind/unbind")
return true
}
routingKey, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Error getting name of routing-key in exchange bind/unbind")
return true
}
m.isRequest = true
params := getBitParams(args[offset])
m.request = strings.Join([]string{source, destination}, " ")
m.fields = common.MapStr{
"destination": destination,
"source": source,
"routing-key": routingKey,
"no-wait": params[0],
}
if args[offset+1] != frameEndOctet && m.parseArguments {
arguments := make(common.MapStr)
_, err, exists := getTable(arguments, args, offset+1)
if !err && exists {
m.fields["arguments"] = arguments
} else if err {
m.notes = append(m.notes, "Failed to parse additional arguments")
}
}
return false
}
func basicQosMethod(m *amqpMessage, args []byte) (bool, bool) {
prefetchSize := binary.BigEndian.Uint32(args[0:4])
prefetchCount := binary.BigEndian.Uint16(args[4:6])
params := getBitParams(args[6])
m.isRequest = true
m.method = "basic.qos"
m.fields = common.MapStr{
"prefetch-size": prefetchSize,
"prefetch-count": prefetchCount,
"global": params[0],
}
return true, true
}
func basicConsumeMethod(m *amqpMessage, args []byte) (bool, bool) {
queue, offset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of queue in basic consume")
return false, false
}
consumerTag, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Error getting name of consumer tag in basic consume")
return false, false
}
params := getBitParams(args[offset])
m.method = "basic.consume"
m.isRequest = true
m.request = queue
m.fields = common.MapStr{
"queue": queue,
"consumer-tag": consumerTag,
"no-local": params[0],
"no-ack": params[1],
"exclusive": params[2],
"no-wait": params[3],
}
if args[offset+1] != frameEndOctet && m.parseArguments {
arguments := make(common.MapStr)
_, err, exists := getTable(arguments, args, offset+1)
if !err && exists {
m.fields["arguments"] = arguments
} else if err {
m.notes = append(m.notes, "Failed to parse additional arguments")
}
}
return true, true
}
func basicConsumeOkMethod(m *amqpMessage, args []byte) (bool, bool) {
consumerTag, _, err := getShortString(args, 1, uint32(args[0]))
if err {
logp.Warn("Error getting name of queue in basic consume")
return false, false
}
m.method = "basic.consume-ok"
m.fields = common.MapStr{
"consumer-tag": consumerTag,
}
return true, true
}
func basicCancelMethod(m *amqpMessage, args []byte) (bool, bool) {
consumerTag, offset, err := getShortString(args, 1, uint32(args[0]))
if err {
logp.Warn("Error getting consumer tag in basic cancel")
return false, false
}
m.method = "basic.cancel"
m.isRequest = true
m.request = consumerTag
params := getBitParams(args[offset])
m.fields = common.MapStr{
"consumer-tag": consumerTag,
"no-wait": params[0],
}
return true, true
}
func basicCancelOkMethod(m *amqpMessage, args []byte) (bool, bool) {
consumerTag, _, err := getShortString(args, 1, uint32(args[0]))
if err {
logp.Warn("Error getting consumer tag in basic cancel ok")
return false, false
}
m.method = "basic.cancel-ok"
m.fields = common.MapStr{
"consumer-tag": consumerTag,
}
return true, true
}
func basicPublishMethod(m *amqpMessage, args []byte) (bool, bool) {
exchange, nextOffset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting exchange in basic publish")
return false, false
}
routingKey, nextOffset, err := getShortString(args, nextOffset+1, uint32(args[nextOffset]))
if err {
logp.Warn("Error getting routing key in basic publish")
return false, false
}
params := getBitParams(args[nextOffset])
m.method = "basic.publish"
m.fields = common.MapStr{
"routing-key": routingKey,
"mandatory": params[0],
"immediate": params[1],
}
// is exchange not default exchange ?
if len(exchange) > 0 {
m.fields["exchange"] = exchange
}
return true, false
}
func basicReturnMethod(m *amqpMessage, args []byte) (bool, bool) {
code := binary.BigEndian.Uint16(args[0:2])
if code < 300 {
//not an error or exception ? not interesting
return true, false
}
replyText, nextOffset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Error getting name of reply text in basic return")
return false, false
}
exchange, nextOffset, err := getShortString(args, nextOffset+1, uint32(args[nextOffset]))
if err {
logp.Warn("Error getting name of exchange in basic return")
return false, false
}
routingKey, _, err := getShortString(args, nextOffset+1, uint32(args[nextOffset]))
if err {
logp.Warn("Error getting name of routing key in basic return")
return false, false
}
m.method = "basic.return"
m.fields = common.MapStr{
"exchange": exchange,
"routing-key": routingKey,
"reply-code": code,
"reply-text": replyText,
}
return true, false
}
func basicDeliverMethod(m *amqpMessage, args []byte) (bool, bool) {
consumerTag, offset, err := getShortString(args, 1, uint32(args[0]))
if err {
logp.Warn("Failed to get consumer tag in basic deliver")
return false, false
}
deliveryTag := binary.BigEndian.Uint64(args[offset : offset+8])
params := getBitParams(args[offset+8])
offset = offset + 9
exchange, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Failed to get exchange in basic deliver")
return false, false
}
routingKey, _, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Failed to get routing key in basic deliver")
return false, false
}
m.method = "basic.deliver"
m.fields = common.MapStr{
"consumer-tag": consumerTag,
"delivery-tag": deliveryTag,
"redelivered": params[0],
"routing-key": routingKey,
}
// is exchange not default exchange ?
if len(exchange) > 0 {
m.fields["exchange"] = exchange
}
return true, false
}
func basicGetMethod(m *amqpMessage, args []byte) (bool, bool) {
queue, offset, err := getShortString(args, 3, uint32(args[2]))
if err {
logp.Warn("Failed to get queue in basic get method")
return false, false
}
m.method = "basic.get"
params := getBitParams(args[offset])
m.isRequest = true
m.request = queue
m.fields = common.MapStr{
"queue": queue,
"no-ack": params[0],
}
return true, true
}
func basicGetOkMethod(m *amqpMessage, args []byte) (bool, bool) {
params := getBitParams(args[8])
exchange, offset, err := getShortString(args, 10, uint32(args[9]))
if err {
logp.Warn("Failed to get queue in basic get-ok")
return false, false
}
routingKey, offset, err := getShortString(args, offset+1, uint32(args[offset]))
if err {
logp.Warn("Failed to get routing key in basic get-ok")
return false, false
}
m.method = "basic.get-ok"
m.fields = common.MapStr{
"delivery-tag": binary.BigEndian.Uint64(args[0:8]),
"redelivered": params[0],
"routing-key": routingKey,
"message-count": binary.BigEndian.Uint32(args[offset : offset+4]),
}
if len(exchange) > 0 {
m.fields["exchange"] = exchange
}
return true, false
}
func basicGetEmptyMethod(m *amqpMessage, args []byte) (bool, bool) {
m.method = "basic.get-empty"
return true, true
}
func basicAckMethod(m *amqpMessage, args []byte) (bool, bool) {
params := getBitParams(args[8])
m.method = "basic.ack"
m.isRequest = true
m.fields = common.MapStr{
"delivery-tag": binary.BigEndian.Uint64(args[0:8]),
"multiple": params[0],
}
return true, true
}
//this is a rabbitMQ specific method
func basicNackMethod(m *amqpMessage, args []byte) (bool, bool) {
params := getBitParams(args[8])
m.method = "basic.nack"
m.isRequest = true
m.fields = common.MapStr{
"delivery-tag": binary.BigEndian.Uint64(args[0:8]),
"multiple": params[0],
"requeue": params[1],
}
return true, true
}
func basicRejectMethod(m *amqpMessage, args []byte) (bool, bool) {
params := getBitParams(args[8])
tag := binary.BigEndian.Uint64(args[0:8])
m.isRequest = true
m.method = "basic.reject"
m.fields = common.MapStr{
"delivery-tag": tag,
"multiple": params[0],
}
m.request = strconv.FormatUint(tag, 10)
return true, true
}
func basicRecoverMethod(m *amqpMessage, args []byte) (bool, bool) {
params := getBitParams(args[0])
m.isRequest = true
m.method = "basic.recover"
m.fields = common.MapStr{
"requeue": params[0],
}
return true, true
}
func txSelectMethod(m *amqpMessage, args []byte) (bool, bool) {
m.isRequest = true
m.method = "tx.select"
return true, true
}
func txCommitMethod(m *amqpMessage, args []byte) (bool, bool) {
m.isRequest = true
m.method = "tx.commit"
return true, true
}
func txRollbackMethod(m *amqpMessage, args []byte) (bool, bool) {
m.isRequest = true
m.method = "tx.rollback"
return true, true
}
//simple function used when server/client responds to a sync method with no new info
func okMethod(m *amqpMessage, args []byte) (bool, bool) {
return true, true
}
// function to get a short string. It sends back an error if slice is too short
//for declared length. if length == 0, the function sends back an empty string and
//advances the offset. Otherwise, it returns the string and the new offset
func getShortString(data []byte, start uint32, length uint32) (short string, nextOffset uint32, err bool) {
if length == 0 {
return "", start, false
}
if uint32(len(data)) < start || uint32(len(data[start:])) < length {
return "", 0, true
}
return string(data[start : start+length]), start + length, false
}
//function to extract bit information in various AMQP methods
func getBitParams(bits byte) (ret [5]bool) {
if bits&16 == 16 {
ret[4] = true
}
if bits&8 == 8 {
ret[3] = true
}
if bits&4 == 4 {
ret[2] = true
}
if bits&2 == 2 {
ret[1] = true
}
if bits&1 == 1 {
ret[0] = true
}
return ret
}