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
|
// Copyright (C) 2017 Kale Blankenship
// Portions Copyright (c) Microsoft Corporation
package encoding
import (
"encoding/binary"
"errors"
"fmt"
"math"
"reflect"
"time"
"github.com/Azure/go-amqp/internal/buffer"
)
// unmarshaler is fulfilled by types that can unmarshal
// themselves from AMQP data.
type unmarshaler interface {
Unmarshal(r *buffer.Buffer) error
}
// unmarshal decodes AMQP encoded data into i.
//
// The decoding method is based on the type of i.
//
// If i implements unmarshaler, i.Unmarshal() will be called.
//
// Pointers to primitive types will be decoded via the appropriate read[Type] function.
//
// If i is a pointer to a pointer (**Type), it will be dereferenced and a new instance
// of (*Type) is allocated via reflection.
//
// Common map types (map[string]string, map[Symbol]any, and
// map[any]any), will be decoded via conversion to the mapStringAny,
// mapSymbolAny, and mapAnyAny types.
func Unmarshal(r *buffer.Buffer, i any) error {
if tryReadNull(r) {
return nil
}
switch t := i.(type) {
case *int:
val, err := readInt(r)
if err != nil {
return err
}
*t = val
case *int8:
val, err := readSbyte(r)
if err != nil {
return err
}
*t = val
case *int16:
val, err := readShort(r)
if err != nil {
return err
}
*t = val
case *int32:
val, err := readInt32(r)
if err != nil {
return err
}
*t = val
case *int64:
val, err := readLong(r)
if err != nil {
return err
}
*t = val
case *uint64:
val, err := readUlong(r)
if err != nil {
return err
}
*t = val
case *uint32:
val, err := readUint32(r)
if err != nil {
return err
}
*t = val
case **uint32: // fastpath for uint32 pointer fields
val, err := readUint32(r)
if err != nil {
return err
}
*t = &val
case *uint16:
val, err := readUshort(r)
if err != nil {
return err
}
*t = val
case *uint8:
val, err := ReadUbyte(r)
if err != nil {
return err
}
*t = val
case *float32:
val, err := readFloat(r)
if err != nil {
return err
}
*t = val
case *float64:
val, err := readDouble(r)
if err != nil {
return err
}
*t = val
case *string:
val, err := ReadString(r)
if err != nil {
return err
}
*t = val
case *Symbol:
s, err := ReadString(r)
if err != nil {
return err
}
*t = Symbol(s)
case *[]byte:
val, err := readBinary(r)
if err != nil {
return err
}
*t = val
case *bool:
b, err := readBool(r)
if err != nil {
return err
}
*t = b
case *time.Time:
ts, err := readTimestamp(r)
if err != nil {
return err
}
*t = ts
case *[]int8:
return (*arrayInt8)(t).Unmarshal(r)
case *[]uint16:
return (*arrayUint16)(t).Unmarshal(r)
case *[]int16:
return (*arrayInt16)(t).Unmarshal(r)
case *[]uint32:
return (*arrayUint32)(t).Unmarshal(r)
case *[]int32:
return (*arrayInt32)(t).Unmarshal(r)
case *[]uint64:
return (*arrayUint64)(t).Unmarshal(r)
case *[]int64:
return (*arrayInt64)(t).Unmarshal(r)
case *[]float32:
return (*arrayFloat)(t).Unmarshal(r)
case *[]float64:
return (*arrayDouble)(t).Unmarshal(r)
case *[]bool:
return (*arrayBool)(t).Unmarshal(r)
case *[]string:
return (*arrayString)(t).Unmarshal(r)
case *[]Symbol:
return (*arraySymbol)(t).Unmarshal(r)
case *[][]byte:
return (*arrayBinary)(t).Unmarshal(r)
case *[]time.Time:
return (*arrayTimestamp)(t).Unmarshal(r)
case *[]UUID:
return (*arrayUUID)(t).Unmarshal(r)
case *[]any:
return (*list)(t).Unmarshal(r)
case *map[any]any:
return (*mapAnyAny)(t).Unmarshal(r)
case *map[string]any:
return (*mapStringAny)(t).Unmarshal(r)
case *map[Symbol]any:
return (*mapSymbolAny)(t).Unmarshal(r)
case *DeliveryState:
type_, _, err := PeekMessageType(r.Bytes())
if err != nil {
return err
}
switch AMQPType(type_) {
case TypeCodeStateAccepted:
*t = new(StateAccepted)
case TypeCodeStateModified:
*t = new(StateModified)
case TypeCodeStateReceived:
*t = new(StateReceived)
case TypeCodeStateRejected:
*t = new(StateRejected)
case TypeCodeStateReleased:
*t = new(StateReleased)
default:
return fmt.Errorf("unexpected type %d for deliveryState", type_)
}
return Unmarshal(r, *t)
case *any:
v, err := ReadAny(r)
if err != nil {
return err
}
*t = v
case unmarshaler:
return t.Unmarshal(r)
default:
// handle **T
v := reflect.Indirect(reflect.ValueOf(i))
// can't unmarshal into a non-pointer
if v.Kind() != reflect.Ptr {
return fmt.Errorf("unable to unmarshal %T", i)
}
// if nil pointer, allocate a new value to
// unmarshal into
if v.IsNil() {
v.Set(reflect.New(v.Type().Elem()))
}
return Unmarshal(r, v.Interface())
}
return nil
}
// unmarshalComposite is a helper for use in a composite's unmarshal() function.
//
// The composite from r will be unmarshaled into zero or more fields. An error
// will be returned if typ does not match the decoded type.
func UnmarshalComposite(r *buffer.Buffer, type_ AMQPType, fields ...UnmarshalField) error {
cType, numFields, err := readCompositeHeader(r)
if err != nil {
return err
}
// check type matches expectation
if cType != type_ {
return fmt.Errorf("invalid header %#0x for %#0x", cType, type_)
}
// Validate the field count is less than or equal to the number of fields
// provided. Fields may be omitted by the sender if they are not set.
if numFields > int64(len(fields)) {
return fmt.Errorf("invalid field count %d for %#0x", numFields, type_)
}
for i, field := range fields[:numFields] {
// If the field is null and handleNull is set, call it.
if tryReadNull(r) {
if field.HandleNull != nil {
err = field.HandleNull()
if err != nil {
return err
}
}
continue
}
// Unmarshal each of the received fields.
err = Unmarshal(r, field.Field)
if err != nil {
return fmt.Errorf("unmarshaling field %d: %v", i, err)
}
}
// check and call handleNull for the remaining fields
for _, field := range fields[numFields:] {
if field.HandleNull != nil {
err = field.HandleNull()
if err != nil {
return err
}
}
}
return nil
}
// unmarshalField is a struct that contains a field to be unmarshaled into.
//
// An optional nullHandler can be set. If the composite field being unmarshaled
// is null and handleNull is not nil, nullHandler will be called.
type UnmarshalField struct {
Field any
HandleNull NullHandler
}
// nullHandler is a function to be called when a composite's field
// is null.
type NullHandler func() error
func readType(r *buffer.Buffer) (AMQPType, error) {
n, err := r.ReadByte()
return AMQPType(n), err
}
func peekType(r *buffer.Buffer) (AMQPType, error) {
n, err := r.PeekByte()
return AMQPType(n), err
}
// readCompositeHeader reads and consumes the composite header from r.
func readCompositeHeader(r *buffer.Buffer) (_ AMQPType, fields int64, _ error) {
type_, err := readType(r)
if err != nil {
return 0, 0, err
}
// compsites always start with 0x0
if type_ != 0 {
return 0, 0, fmt.Errorf("invalid composite header %#02x", type_)
}
// next, the composite type is encoded as an AMQP uint8
v, err := readUlong(r)
if err != nil {
return 0, 0, err
}
// fields are represented as a list
fields, err = readListHeader(r)
return AMQPType(v), fields, err
}
func readListHeader(r *buffer.Buffer) (length int64, _ error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
listLength := r.Len()
switch type_ {
case TypeCodeList0:
return 0, nil
case TypeCodeList8:
buf, ok := r.Next(2)
if !ok {
return 0, errors.New("invalid length")
}
_ = buf[1]
size := int(buf[0])
if size > listLength-1 {
return 0, errors.New("invalid length")
}
length = int64(buf[1])
case TypeCodeList32:
buf, ok := r.Next(8)
if !ok {
return 0, errors.New("invalid length")
}
_ = buf[7]
size := int(binary.BigEndian.Uint32(buf[:4]))
if size > listLength-4 {
return 0, errors.New("invalid length")
}
length = int64(binary.BigEndian.Uint32(buf[4:8]))
default:
return 0, fmt.Errorf("type code %#02x is not a recognized list type", type_)
}
return length, nil
}
func readArrayHeader(r *buffer.Buffer) (length int64, _ error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
arrayLength := r.Len()
switch type_ {
case TypeCodeArray8:
buf, ok := r.Next(2)
if !ok {
return 0, errors.New("invalid length")
}
_ = buf[1]
size := int(buf[0])
if size > arrayLength-1 {
return 0, errors.New("invalid length")
}
length = int64(buf[1])
case TypeCodeArray32:
buf, ok := r.Next(8)
if !ok {
return 0, errors.New("invalid length")
}
_ = buf[7]
size := binary.BigEndian.Uint32(buf[:4])
if int(size) > arrayLength-4 {
return 0, fmt.Errorf("invalid length for type %02x", type_)
}
length = int64(binary.BigEndian.Uint32(buf[4:8]))
default:
return 0, fmt.Errorf("type code %#02x is not a recognized array type", type_)
}
return length, nil
}
func ReadString(r *buffer.Buffer) (string, error) {
type_, err := readType(r)
if err != nil {
return "", err
}
var length int64
switch type_ {
case TypeCodeStr8, TypeCodeSym8:
n, err := r.ReadByte()
if err != nil {
return "", err
}
length = int64(n)
case TypeCodeStr32, TypeCodeSym32:
buf, ok := r.Next(4)
if !ok {
return "", fmt.Errorf("invalid length for type %#02x", type_)
}
length = int64(binary.BigEndian.Uint32(buf))
default:
return "", fmt.Errorf("type code %#02x is not a recognized string type", type_)
}
buf, ok := r.Next(length)
if !ok {
return "", errors.New("invalid length")
}
return string(buf), nil
}
func readBinary(r *buffer.Buffer) ([]byte, error) {
type_, err := readType(r)
if err != nil {
return nil, err
}
var length int64
switch type_ {
case TypeCodeVbin8:
n, err := r.ReadByte()
if err != nil {
return nil, err
}
length = int64(n)
case TypeCodeVbin32:
buf, ok := r.Next(4)
if !ok {
return nil, fmt.Errorf("invalid length for type %#02x", type_)
}
length = int64(binary.BigEndian.Uint32(buf))
default:
return nil, fmt.Errorf("type code %#02x is not a recognized binary type", type_)
}
if length == 0 {
// An empty value and a nil value are distinct,
// ensure that the returned value is not nil in this case.
return make([]byte, 0), nil
}
buf, ok := r.Next(length)
if !ok {
return nil, errors.New("invalid length")
}
return append([]byte(nil), buf...), nil
}
func ReadAny(r *buffer.Buffer) (any, error) {
if tryReadNull(r) {
return nil, nil
}
type_, err := peekType(r)
if err != nil {
return nil, errors.New("invalid length")
}
switch type_ {
// composite
case 0x0:
return readComposite(r)
// bool
case TypeCodeBool, TypeCodeBoolTrue, TypeCodeBoolFalse:
return readBool(r)
// uint
case TypeCodeUbyte:
return ReadUbyte(r)
case TypeCodeUshort:
return readUshort(r)
case TypeCodeUint,
TypeCodeSmallUint,
TypeCodeUint0:
return readUint32(r)
case TypeCodeUlong,
TypeCodeSmallUlong,
TypeCodeUlong0:
return readUlong(r)
// int
case TypeCodeByte:
return readSbyte(r)
case TypeCodeShort:
return readShort(r)
case TypeCodeInt,
TypeCodeSmallint:
return readInt32(r)
case TypeCodeLong,
TypeCodeSmalllong:
return readLong(r)
// floating point
case TypeCodeFloat:
return readFloat(r)
case TypeCodeDouble:
return readDouble(r)
// binary
case TypeCodeVbin8, TypeCodeVbin32:
return readBinary(r)
// strings
case TypeCodeStr8, TypeCodeStr32:
return ReadString(r)
case TypeCodeSym8, TypeCodeSym32:
// symbols currently decoded as string to avoid
// exposing symbol type in message, this may need
// to change if users need to distinguish strings
// from symbols
return ReadString(r)
// timestamp
case TypeCodeTimestamp:
return readTimestamp(r)
// UUID
case TypeCodeUUID:
return readUUID(r)
// arrays
case TypeCodeArray8, TypeCodeArray32:
return readAnyArray(r)
// lists
case TypeCodeList0, TypeCodeList8, TypeCodeList32:
return readAnyList(r)
// maps
case TypeCodeMap8:
return readAnyMap(r)
case TypeCodeMap32:
return readAnyMap(r)
// TODO: implement
case TypeCodeDecimal32:
return nil, errors.New("decimal32 not implemented")
case TypeCodeDecimal64:
return nil, errors.New("decimal64 not implemented")
case TypeCodeDecimal128:
return nil, errors.New("decimal128 not implemented")
case TypeCodeChar:
return nil, errors.New("char not implemented")
default:
return nil, fmt.Errorf("unknown type %#02x", type_)
}
}
func readAnyMap(r *buffer.Buffer) (any, error) {
var m map[any]any
err := (*mapAnyAny)(&m).Unmarshal(r)
if err != nil {
return nil, err
}
if len(m) == 0 {
return m, nil
}
stringKeys := true
Loop:
for key := range m {
switch key.(type) {
case string:
case Symbol:
default:
stringKeys = false
break Loop
}
}
if stringKeys {
mm := make(map[string]any, len(m))
for key, value := range m {
switch key := key.(type) {
case string:
mm[key] = value
case Symbol:
mm[string(key)] = value
}
}
return mm, nil
}
return m, nil
}
func readAnyList(r *buffer.Buffer) (any, error) {
var a []any
err := (*list)(&a).Unmarshal(r)
return a, err
}
func readAnyArray(r *buffer.Buffer) (any, error) {
// get the array type
buf := r.Bytes()
if len(buf) < 1 {
return nil, errors.New("invalid length")
}
var typeIdx int
switch AMQPType(buf[0]) {
case TypeCodeArray8:
typeIdx = 3
case TypeCodeArray32:
typeIdx = 9
default:
return nil, fmt.Errorf("invalid array type %02x", buf[0])
}
if len(buf) < typeIdx+1 {
return nil, errors.New("invalid length")
}
switch AMQPType(buf[typeIdx]) {
case TypeCodeByte:
var a []int8
err := (*arrayInt8)(&a).Unmarshal(r)
return a, err
case TypeCodeUbyte:
var a ArrayUByte
err := a.Unmarshal(r)
return a, err
case TypeCodeUshort:
var a []uint16
err := (*arrayUint16)(&a).Unmarshal(r)
return a, err
case TypeCodeShort:
var a []int16
err := (*arrayInt16)(&a).Unmarshal(r)
return a, err
case TypeCodeUint0, TypeCodeSmallUint, TypeCodeUint:
var a []uint32
err := (*arrayUint32)(&a).Unmarshal(r)
return a, err
case TypeCodeSmallint, TypeCodeInt:
var a []int32
err := (*arrayInt32)(&a).Unmarshal(r)
return a, err
case TypeCodeUlong0, TypeCodeSmallUlong, TypeCodeUlong:
var a []uint64
err := (*arrayUint64)(&a).Unmarshal(r)
return a, err
case TypeCodeSmalllong, TypeCodeLong:
var a []int64
err := (*arrayInt64)(&a).Unmarshal(r)
return a, err
case TypeCodeFloat:
var a []float32
err := (*arrayFloat)(&a).Unmarshal(r)
return a, err
case TypeCodeDouble:
var a []float64
err := (*arrayDouble)(&a).Unmarshal(r)
return a, err
case TypeCodeBool, TypeCodeBoolTrue, TypeCodeBoolFalse:
var a []bool
err := (*arrayBool)(&a).Unmarshal(r)
return a, err
case TypeCodeStr8, TypeCodeStr32:
var a []string
err := (*arrayString)(&a).Unmarshal(r)
return a, err
case TypeCodeSym8, TypeCodeSym32:
var a []Symbol
err := (*arraySymbol)(&a).Unmarshal(r)
return a, err
case TypeCodeVbin8, TypeCodeVbin32:
var a [][]byte
err := (*arrayBinary)(&a).Unmarshal(r)
return a, err
case TypeCodeTimestamp:
var a []time.Time
err := (*arrayTimestamp)(&a).Unmarshal(r)
return a, err
case TypeCodeUUID:
var a []UUID
err := (*arrayUUID)(&a).Unmarshal(r)
return a, err
default:
return nil, fmt.Errorf("array decoding not implemented for %#02x", buf[typeIdx])
}
}
func readComposite(r *buffer.Buffer) (any, error) {
buf := r.Bytes()
if len(buf) < 2 {
return nil, errors.New("invalid length for composite")
}
// compsites start with 0x0
if AMQPType(buf[0]) != 0x0 {
return nil, fmt.Errorf("invalid composite header %#02x", buf[0])
}
var compositeType uint64
switch AMQPType(buf[1]) {
case TypeCodeSmallUlong:
if len(buf) < 3 {
return nil, errors.New("invalid length for smallulong")
}
compositeType = uint64(buf[2])
case TypeCodeUlong:
if len(buf) < 10 {
return nil, errors.New("invalid length for ulong")
}
compositeType = binary.BigEndian.Uint64(buf[2:])
}
if compositeType > math.MaxUint8 {
// try as described type
var dt DescribedType
err := dt.Unmarshal(r)
return dt, err
}
switch AMQPType(compositeType) {
// Error
case TypeCodeError:
t := new(Error)
err := t.Unmarshal(r)
return t, err
// Lifetime Policies
case TypeCodeDeleteOnClose:
t := DeleteOnClose
err := t.Unmarshal(r)
return t, err
case TypeCodeDeleteOnNoMessages:
t := DeleteOnNoMessages
err := t.Unmarshal(r)
return t, err
case TypeCodeDeleteOnNoLinks:
t := DeleteOnNoLinks
err := t.Unmarshal(r)
return t, err
case TypeCodeDeleteOnNoLinksOrMessages:
t := DeleteOnNoLinksOrMessages
err := t.Unmarshal(r)
return t, err
// Delivery States
case TypeCodeStateAccepted:
t := new(StateAccepted)
err := t.Unmarshal(r)
return t, err
case TypeCodeStateModified:
t := new(StateModified)
err := t.Unmarshal(r)
return t, err
case TypeCodeStateReceived:
t := new(StateReceived)
err := t.Unmarshal(r)
return t, err
case TypeCodeStateRejected:
t := new(StateRejected)
err := t.Unmarshal(r)
return t, err
case TypeCodeStateReleased:
t := new(StateReleased)
err := t.Unmarshal(r)
return t, err
case TypeCodeOpen,
TypeCodeBegin,
TypeCodeAttach,
TypeCodeFlow,
TypeCodeTransfer,
TypeCodeDisposition,
TypeCodeDetach,
TypeCodeEnd,
TypeCodeClose,
TypeCodeSource,
TypeCodeTarget,
TypeCodeMessageHeader,
TypeCodeDeliveryAnnotations,
TypeCodeMessageAnnotations,
TypeCodeMessageProperties,
TypeCodeApplicationProperties,
TypeCodeApplicationData,
TypeCodeAMQPSequence,
TypeCodeAMQPValue,
TypeCodeFooter,
TypeCodeSASLMechanism,
TypeCodeSASLInit,
TypeCodeSASLChallenge,
TypeCodeSASLResponse,
TypeCodeSASLOutcome:
return nil, fmt.Errorf("readComposite unmarshal not implemented for %#02x", compositeType)
default:
// try as described type
var dt DescribedType
err := dt.Unmarshal(r)
return dt, err
}
}
func readTimestamp(r *buffer.Buffer) (time.Time, error) {
type_, err := readType(r)
if err != nil {
return time.Time{}, err
}
if type_ != TypeCodeTimestamp {
return time.Time{}, fmt.Errorf("invalid type for timestamp %02x", type_)
}
n, err := r.ReadUint64()
ms := int64(n)
return time.Unix(ms/1000, (ms%1000)*1000000).UTC(), err
}
func readInt(r *buffer.Buffer) (int, error) {
type_, err := peekType(r)
if err != nil {
return 0, err
}
switch type_ {
// Unsigned
case TypeCodeUbyte:
n, err := ReadUbyte(r)
return int(n), err
case TypeCodeUshort:
n, err := readUshort(r)
return int(n), err
case TypeCodeUint0, TypeCodeSmallUint, TypeCodeUint:
n, err := readUint32(r)
return int(n), err
case TypeCodeUlong0, TypeCodeSmallUlong, TypeCodeUlong:
n, err := readUlong(r)
return int(n), err
// Signed
case TypeCodeByte:
n, err := readSbyte(r)
return int(n), err
case TypeCodeShort:
n, err := readShort(r)
return int(n), err
case TypeCodeSmallint, TypeCodeInt:
n, err := readInt32(r)
return int(n), err
case TypeCodeSmalllong, TypeCodeLong:
n, err := readLong(r)
return int(n), err
default:
return 0, fmt.Errorf("type code %#02x is not a recognized number type", type_)
}
}
func readLong(r *buffer.Buffer) (int64, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
switch type_ {
case TypeCodeSmalllong:
n, err := r.ReadByte()
return int64(int8(n)), err
case TypeCodeLong:
n, err := r.ReadUint64()
return int64(n), err
default:
return 0, fmt.Errorf("invalid type for uint32 %02x", type_)
}
}
func readInt32(r *buffer.Buffer) (int32, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
switch type_ {
case TypeCodeSmallint:
n, err := r.ReadByte()
return int32(int8(n)), err
case TypeCodeInt:
n, err := r.ReadUint32()
return int32(n), err
default:
return 0, fmt.Errorf("invalid type for int32 %02x", type_)
}
}
func readShort(r *buffer.Buffer) (int16, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
if type_ != TypeCodeShort {
return 0, fmt.Errorf("invalid type for short %02x", type_)
}
n, err := r.ReadUint16()
return int16(n), err
}
func readSbyte(r *buffer.Buffer) (int8, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
if type_ != TypeCodeByte {
return 0, fmt.Errorf("invalid type for int8 %02x", type_)
}
n, err := r.ReadByte()
return int8(n), err
}
func ReadUbyte(r *buffer.Buffer) (uint8, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
if type_ != TypeCodeUbyte {
return 0, fmt.Errorf("invalid type for ubyte %02x", type_)
}
return r.ReadByte()
}
func readUshort(r *buffer.Buffer) (uint16, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
if type_ != TypeCodeUshort {
return 0, fmt.Errorf("invalid type for ushort %02x", type_)
}
return r.ReadUint16()
}
func readUint32(r *buffer.Buffer) (uint32, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
switch type_ {
case TypeCodeUint0:
return 0, nil
case TypeCodeSmallUint:
n, err := r.ReadByte()
return uint32(n), err
case TypeCodeUint:
return r.ReadUint32()
default:
return 0, fmt.Errorf("invalid type for uint32 %02x", type_)
}
}
func readUlong(r *buffer.Buffer) (uint64, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
switch type_ {
case TypeCodeUlong0:
return 0, nil
case TypeCodeSmallUlong:
n, err := r.ReadByte()
return uint64(n), err
case TypeCodeUlong:
return r.ReadUint64()
default:
return 0, fmt.Errorf("invalid type for uint32 %02x", type_)
}
}
func readFloat(r *buffer.Buffer) (float32, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
if type_ != TypeCodeFloat {
return 0, fmt.Errorf("invalid type for float32 %02x", type_)
}
bits, err := r.ReadUint32()
return math.Float32frombits(bits), err
}
func readDouble(r *buffer.Buffer) (float64, error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
if type_ != TypeCodeDouble {
return 0, fmt.Errorf("invalid type for float64 %02x", type_)
}
bits, err := r.ReadUint64()
return math.Float64frombits(bits), err
}
func readBool(r *buffer.Buffer) (bool, error) {
type_, err := readType(r)
if err != nil {
return false, err
}
switch type_ {
case TypeCodeBool:
b, err := r.ReadByte()
return b != 0, err
case TypeCodeBoolTrue:
return true, nil
case TypeCodeBoolFalse:
return false, nil
default:
return false, fmt.Errorf("type code %#02x is not a recognized bool type", type_)
}
}
func readUint(r *buffer.Buffer) (value uint64, _ error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
switch type_ {
case TypeCodeUint0, TypeCodeUlong0:
return 0, nil
case TypeCodeUbyte, TypeCodeSmallUint, TypeCodeSmallUlong:
n, err := r.ReadByte()
return uint64(n), err
case TypeCodeUshort:
n, err := r.ReadUint16()
return uint64(n), err
case TypeCodeUint:
n, err := r.ReadUint32()
return uint64(n), err
case TypeCodeUlong:
return r.ReadUint64()
default:
return 0, fmt.Errorf("type code %#02x is not a recognized number type", type_)
}
}
func readUUID(r *buffer.Buffer) (UUID, error) {
var uuid UUID
type_, err := readType(r)
if err != nil {
return uuid, err
}
if type_ != TypeCodeUUID {
return uuid, fmt.Errorf("type code %#00x is not a UUID", type_)
}
buf, ok := r.Next(16)
if !ok {
return uuid, errors.New("invalid length")
}
copy(uuid[:], buf)
return uuid, nil
}
func readMapHeader(r *buffer.Buffer) (count uint32, _ error) {
type_, err := readType(r)
if err != nil {
return 0, err
}
length := r.Len()
switch type_ {
case TypeCodeMap8:
buf, ok := r.Next(2)
if !ok {
return 0, errors.New("invalid length")
}
_ = buf[1]
size := int(buf[0])
if size > length-1 {
return 0, errors.New("invalid length")
}
count = uint32(buf[1])
case TypeCodeMap32:
buf, ok := r.Next(8)
if !ok {
return 0, errors.New("invalid length")
}
_ = buf[7]
size := int(binary.BigEndian.Uint32(buf[:4]))
if size > length-4 {
return 0, errors.New("invalid length")
}
count = binary.BigEndian.Uint32(buf[4:8])
default:
return 0, fmt.Errorf("invalid map type %#02x", type_)
}
if int(count) > r.Len() {
return 0, errors.New("invalid length")
}
return count, nil
}
|