1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
|
package msgp
import (
"bytes"
"encoding/binary"
"encoding/json"
"math"
"strconv"
"time"
)
var big = binary.BigEndian
// NextType returns the type of the next
// object in the slice. If the length
// of the input is zero, it returns
// [InvalidType].
func NextType(b []byte) Type {
if len(b) == 0 {
return InvalidType
}
spec := getBytespec(b[0])
t := spec.typ
if t == ExtensionType && len(b) > int(spec.size) {
var tp int8
if spec.extra == constsize {
tp = int8(b[1])
} else {
tp = int8(b[spec.size-1])
}
switch tp {
case TimeExtension, MsgTimeExtension:
return TimeType
case Complex128Extension:
return Complex128Type
case Complex64Extension:
return Complex64Type
default:
return ExtensionType
}
}
return t
}
// IsNil returns true if len(b)>0 and
// the leading byte is a 'nil' MessagePack
// byte; false otherwise
func IsNil(b []byte) bool {
if len(b) != 0 && b[0] == mnil {
return true
}
return false
}
// Raw is raw MessagePack.
// Raw allows you to read and write
// data without interpreting its contents.
type Raw []byte
// MarshalMsg implements [Marshaler].
// It appends the raw contents of 'raw'
// to the provided byte slice. If 'raw'
// is 0 bytes, 'nil' will be appended instead.
func (r Raw) MarshalMsg(b []byte) ([]byte, error) {
i := len(r)
if i == 0 {
return AppendNil(b), nil
}
o, l := ensure(b, i)
copy(o[l:], []byte(r))
return o, nil
}
// UnmarshalMsg implements [Unmarshaler].
// It sets the contents of *Raw to be the next
// object in the provided byte slice.
func (r *Raw) UnmarshalMsg(b []byte) ([]byte, error) {
l := len(b)
out, err := Skip(b)
if err != nil {
return b, err
}
rlen := l - len(out)
if IsNil(b[:rlen]) {
rlen = 0
}
if cap(*r) < rlen {
*r = make(Raw, rlen)
} else {
*r = (*r)[0:rlen]
}
copy(*r, b[:rlen])
return out, nil
}
// EncodeMsg implements [Encodable].
// It writes the raw bytes to the writer.
// If r is empty, it writes 'nil' instead.
func (r Raw) EncodeMsg(w *Writer) error {
if len(r) == 0 {
return w.WriteNil()
}
_, err := w.Write([]byte(r))
return err
}
// DecodeMsg implements [Decodable].
// It sets the value of *Raw to be the
// next object on the wire.
func (r *Raw) DecodeMsg(f *Reader) error {
*r = (*r)[:0]
err := appendNext(f, (*[]byte)(r))
if IsNil(*r) {
*r = (*r)[:0]
}
return err
}
// Msgsize implements [Sizer].
func (r Raw) Msgsize() int {
l := len(r)
if l == 0 {
return 1 // for 'nil'
}
return l
}
func appendNext(f *Reader, d *[]byte) error {
amt, o, err := getNextSize(f.R)
if err != nil {
return err
}
var i int
*d, i = ensure(*d, int(amt))
_, err = f.R.ReadFull((*d)[i:])
if err != nil {
return err
}
for o > 0 {
err = appendNext(f, d)
if err != nil {
return err
}
o--
}
return nil
}
// MarshalJSON implements [json.Marshaler].
func (r *Raw) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
_, err := UnmarshalAsJSON(&buf, []byte(*r))
return buf.Bytes(), err
}
// ReadMapHeaderBytes reads a map header size
// from 'b' and returns the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a map)
func ReadMapHeaderBytes(b []byte) (sz uint32, o []byte, err error) {
l := len(b)
if l < 1 {
err = ErrShortBytes
return
}
lead := b[0]
b = b[1:]
if isfixmap(lead) {
sz = uint32(rfixmap(lead))
o = b
return
}
switch lead {
case mmap16:
if len(b) < 2 {
err = ErrShortBytes
return
}
sz = uint32(big.Uint16(b))
o = b[2:]
return
case mmap32:
if len(b) < 4 {
err = ErrShortBytes
return
}
sz = big.Uint32(b)
o = b[4:]
return
default:
err = badPrefix(MapType, lead)
return
}
}
// ReadMapKeyZC attempts to read a map key
// from 'b' and returns the key bytes and the remaining bytes
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a str or bin)
func ReadMapKeyZC(b []byte) ([]byte, []byte, error) {
o, x, err := ReadStringZC(b)
if err != nil {
if tperr, ok := err.(TypeError); ok && tperr.Encoded == BinType {
return ReadBytesZC(b)
}
return nil, b, err
}
return o, x, nil
}
// ReadArrayHeaderBytes attempts to read
// the array header size off of 'b' and return
// the size and remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not an array)
func ReadArrayHeaderBytes(b []byte) (sz uint32, o []byte, err error) {
if len(b) < 1 {
return 0, nil, ErrShortBytes
}
lead := b[0]
b = b[1:]
if isfixarray(lead) {
sz = uint32(rfixarray(lead))
o = b
return
}
switch lead {
case marray16:
if len(b) < 2 {
err = ErrShortBytes
return
}
sz = uint32(big.Uint16(b))
o = b[2:]
return
case marray32:
if len(b) < 4 {
err = ErrShortBytes
return
}
sz = big.Uint32(b)
o = b[4:]
return
default:
err = badPrefix(ArrayType, lead)
return
}
}
// ReadBytesHeader reads the 'bin' header size
// off of 'b' and returns the size and remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a bin object)
func ReadBytesHeader(b []byte) (sz uint32, o []byte, err error) {
if len(b) < 1 {
return 0, nil, ErrShortBytes
}
switch b[0] {
case mbin8:
if len(b) < 2 {
err = ErrShortBytes
return
}
sz = uint32(b[1])
o = b[2:]
return
case mbin16:
if len(b) < 3 {
err = ErrShortBytes
return
}
sz = uint32(big.Uint16(b[1:]))
o = b[3:]
return
case mbin32:
if len(b) < 5 {
err = ErrShortBytes
return
}
sz = big.Uint32(b[1:])
o = b[5:]
return
default:
err = badPrefix(BinType, b[0])
return
}
}
// ReadNilBytes tries to read a "nil" byte
// off of 'b' and return the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a 'nil')
// - [InvalidPrefixError]
func ReadNilBytes(b []byte) ([]byte, error) {
if len(b) < 1 {
return nil, ErrShortBytes
}
if b[0] != mnil {
return b, badPrefix(NilType, b[0])
}
return b[1:], nil
}
// ReadFloat64Bytes tries to read a float64
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a float64)
func ReadFloat64Bytes(b []byte) (f float64, o []byte, err error) {
if len(b) < 9 {
if len(b) >= 5 && b[0] == mfloat32 {
var tf float32
tf, o, err = ReadFloat32Bytes(b)
f = float64(tf)
return
}
err = ErrShortBytes
return
}
if b[0] != mfloat64 {
if b[0] == mfloat32 {
var tf float32
tf, o, err = ReadFloat32Bytes(b)
f = float64(tf)
return
}
err = badPrefix(Float64Type, b[0])
return
}
f = math.Float64frombits(getMuint64(b))
o = b[9:]
return
}
// ReadFloat32Bytes tries to read a float64
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a float32)
func ReadFloat32Bytes(b []byte) (f float32, o []byte, err error) {
if len(b) < 5 {
err = ErrShortBytes
return
}
if b[0] != mfloat32 {
err = TypeError{Method: Float32Type, Encoded: getType(b[0])}
return
}
f = math.Float32frombits(getMuint32(b))
o = b[5:]
return
}
// ReadBoolBytes tries to read a float64
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a bool)
func ReadBoolBytes(b []byte) (bool, []byte, error) {
if len(b) < 1 {
return false, b, ErrShortBytes
}
switch b[0] {
case mtrue:
return true, b[1:], nil
case mfalse:
return false, b[1:], nil
default:
return false, b, badPrefix(BoolType, b[0])
}
}
// ReadDurationBytes tries to read a time.Duration
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - TypeError (not a int)
func ReadDurationBytes(b []byte) (d time.Duration, o []byte, err error) {
i, o, err := ReadInt64Bytes(b)
return time.Duration(i), o, err
}
// ReadInt64Bytes tries to read an int64
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a int)
func ReadInt64Bytes(b []byte) (i int64, o []byte, err error) {
if len(b) < 1 {
return 0, nil, ErrShortBytes
}
lead := b[0]
b = b[1:]
if isfixint(lead) {
i = int64(rfixint(lead))
o = b
return
}
if isnfixint(lead) {
i = int64(rnfixint(lead))
o = b
return
}
switch lead {
case mint8:
if len(b) < 1 {
err = ErrShortBytes
return
}
i = int64(int8(b[0]))
o = b[1:]
return
case muint8:
if len(b) < 1 {
err = ErrShortBytes
return
}
i = int64(b[0])
o = b[1:]
return
case mint16:
if len(b) < 2 {
err = ErrShortBytes
return
}
i = int64(int16(big.Uint16(b)))
o = b[2:]
return
case muint16:
if len(b) < 2 {
err = ErrShortBytes
return
}
i = int64(big.Uint16(b))
o = b[2:]
return
case mint32:
if len(b) < 4 {
err = ErrShortBytes
return
}
i = int64(int32(big.Uint32(b)))
o = b[4:]
return
case muint32:
if len(b) < 4 {
err = ErrShortBytes
return
}
i = int64(big.Uint32(b))
o = b[4:]
return
case mint64:
if len(b) < 8 {
err = ErrShortBytes
return
}
i = int64(big.Uint64(b))
o = b[8:]
return
case muint64:
if len(b) < 8 {
err = ErrShortBytes
return
}
u := big.Uint64(b)
if u > math.MaxInt64 {
err = UintOverflow{Value: u, FailedBitsize: 64}
return
}
i = int64(u)
o = b[8:]
return
default:
err = badPrefix(IntType, lead)
return
}
}
// ReadInt32Bytes tries to read an int32
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a int)
// - [IntOverflow] (value doesn't fit in int32)
func ReadInt32Bytes(b []byte) (int32, []byte, error) {
i, o, err := ReadInt64Bytes(b)
if i > math.MaxInt32 || i < math.MinInt32 {
return 0, o, IntOverflow{Value: i, FailedBitsize: 32}
}
return int32(i), o, err
}
// ReadInt16Bytes tries to read an int16
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a int)
// - [IntOverflow] (value doesn't fit in int16)
func ReadInt16Bytes(b []byte) (int16, []byte, error) {
i, o, err := ReadInt64Bytes(b)
if i > math.MaxInt16 || i < math.MinInt16 {
return 0, o, IntOverflow{Value: i, FailedBitsize: 16}
}
return int16(i), o, err
}
// ReadInt8Bytes tries to read an int16
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a int)
// - [IntOverflow] (value doesn't fit in int8)
func ReadInt8Bytes(b []byte) (int8, []byte, error) {
i, o, err := ReadInt64Bytes(b)
if i > math.MaxInt8 || i < math.MinInt8 {
return 0, o, IntOverflow{Value: i, FailedBitsize: 8}
}
return int8(i), o, err
}
// ReadIntBytes tries to read an int
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a int)
// - [IntOverflow] (value doesn't fit in int; 32-bit platforms only)
func ReadIntBytes(b []byte) (int, []byte, error) {
if smallint {
i, b, err := ReadInt32Bytes(b)
return int(i), b, err
}
i, b, err := ReadInt64Bytes(b)
return int(i), b, err
}
// ReadUint64Bytes tries to read a uint64
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a uint)
func ReadUint64Bytes(b []byte) (u uint64, o []byte, err error) {
if len(b) < 1 {
return 0, nil, ErrShortBytes
}
lead := b[0]
b = b[1:]
if isfixint(lead) {
u = uint64(rfixint(lead))
o = b
return
}
switch lead {
case mint8:
if len(b) < 1 {
err = ErrShortBytes
return
}
v := int64(int8(b[0]))
if v < 0 {
err = UintBelowZero{Value: v}
return
}
u = uint64(v)
o = b[1:]
return
case muint8:
if len(b) < 1 {
err = ErrShortBytes
return
}
u = uint64(b[0])
o = b[1:]
return
case mint16:
if len(b) < 2 {
err = ErrShortBytes
return
}
v := int64((int16(b[0]) << 8) | int16(b[1]))
if v < 0 {
err = UintBelowZero{Value: v}
return
}
u = uint64(v)
o = b[2:]
return
case muint16:
if len(b) < 2 {
err = ErrShortBytes
return
}
u = uint64(big.Uint16(b))
o = b[2:]
return
case mint32:
if len(b) < 4 {
err = ErrShortBytes
return
}
v := int64(int32(big.Uint32(b)))
if v < 0 {
err = UintBelowZero{Value: v}
return
}
u = uint64(v)
o = b[4:]
return
case muint32:
if len(b) < 4 {
err = ErrShortBytes
return
}
u = uint64(big.Uint32(b))
o = b[4:]
return
case mint64:
if len(b) < 8 {
err = ErrShortBytes
return
}
v := int64(big.Uint64(b))
if v < 0 {
err = UintBelowZero{Value: v}
return
}
u = uint64(v)
o = b[8:]
return
case muint64:
if len(b) < 8 {
err = ErrShortBytes
return
}
u = big.Uint64(b)
o = b[8:]
return
default:
if isnfixint(lead) {
err = UintBelowZero{Value: int64(rnfixint(lead))}
} else {
err = badPrefix(UintType, lead)
}
return
}
}
// ReadUint32Bytes tries to read a uint32
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a uint)
// - [UintOverflow] (value too large for uint32)
func ReadUint32Bytes(b []byte) (uint32, []byte, error) {
v, o, err := ReadUint64Bytes(b)
if v > math.MaxUint32 {
return 0, nil, UintOverflow{Value: v, FailedBitsize: 32}
}
return uint32(v), o, err
}
// ReadUint16Bytes tries to read a uint16
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a uint)
// - [UintOverflow] (value too large for uint16)
func ReadUint16Bytes(b []byte) (uint16, []byte, error) {
v, o, err := ReadUint64Bytes(b)
if v > math.MaxUint16 {
return 0, nil, UintOverflow{Value: v, FailedBitsize: 16}
}
return uint16(v), o, err
}
// ReadUint8Bytes tries to read a uint8
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a uint)
// - [UintOverflow] (value too large for uint8)
func ReadUint8Bytes(b []byte) (uint8, []byte, error) {
v, o, err := ReadUint64Bytes(b)
if v > math.MaxUint8 {
return 0, nil, UintOverflow{Value: v, FailedBitsize: 8}
}
return uint8(v), o, err
}
// ReadUintBytes tries to read a uint
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a uint)
// - [UintOverflow] (value too large for uint; 32-bit platforms only)
func ReadUintBytes(b []byte) (uint, []byte, error) {
if smallint {
u, b, err := ReadUint32Bytes(b)
return uint(u), b, err
}
u, b, err := ReadUint64Bytes(b)
return uint(u), b, err
}
// ReadByteBytes is analogous to ReadUint8Bytes
func ReadByteBytes(b []byte) (byte, []byte, error) {
return ReadUint8Bytes(b)
}
// ReadBytesBytes reads a 'bin' object
// from 'b' and returns its vaue and
// the remaining bytes in 'b'.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - [TypeError] (not a 'bin' object)
func ReadBytesBytes(b []byte, scratch []byte) (v []byte, o []byte, err error) {
return readBytesBytes(b, scratch, false)
}
func readBytesBytes(b []byte, scratch []byte, zc bool) (v []byte, o []byte, err error) {
l := len(b)
if l < 1 {
return nil, nil, ErrShortBytes
}
lead := b[0]
b = b[1:]
var read int
switch lead {
case mbin8:
if len(b) < 1 {
err = ErrShortBytes
return
}
read = int(b[0])
b = b[1:]
case mbin16:
if len(b) < 2 {
err = ErrShortBytes
return
}
read = int(big.Uint16(b))
b = b[2:]
case mbin32:
if len(b) < 4 {
err = ErrShortBytes
return
}
read = int(big.Uint32(b))
b = b[4:]
default:
err = badPrefix(BinType, lead)
return
}
if len(b) < read {
err = ErrShortBytes
return
}
// zero-copy
if zc {
v = b[0:read]
o = b[read:]
return
}
if cap(scratch) >= read {
v = scratch[0:read]
} else {
v = make([]byte, read)
}
o = b[copy(v, b):]
return
}
// ReadBytesZC extracts the messagepack-encoded
// binary field without copying. The returned []byte
// points to the same memory as the input slice.
//
// Possible errors:
//
// - [ErrShortBytes] (b not long enough)
// - [TypeError] (object not 'bin')
func ReadBytesZC(b []byte) (v []byte, o []byte, err error) {
return readBytesBytes(b, nil, true)
}
func ReadExactBytes(b []byte, into []byte) (o []byte, err error) {
if len(b) < 1 {
err = ErrShortBytes
return
}
lead := b[0]
var read uint32
b = b[1:]
switch lead {
case mbin8:
if len(b) < 1 {
err = ErrShortBytes
return
}
read = uint32(b[0])
b = b[1:]
case mbin16:
if len(b) < 2 {
err = ErrShortBytes
return
}
read = uint32(big.Uint16(b))
b = b[2:]
case mbin32:
if len(b) < 4 {
err = ErrShortBytes
return
}
read = big.Uint32(b)
b = b[4:]
default:
err = badPrefix(BinType, lead)
return
}
if read != uint32(len(into)) {
err = ArrayError{Wanted: uint32(len(into)), Got: read}
return
}
o = b[copy(into, b):]
return
}
// ReadStringZC reads a messagepack string field
// without copying. The returned []byte points
// to the same memory as the input slice.
//
// Possible errors:
//
// - [ErrShortBytes] (b not long enough)
// - [TypeError] (object not 'str')
func ReadStringZC(b []byte) (v []byte, o []byte, err error) {
if len(b) < 1 {
return nil, nil, ErrShortBytes
}
lead := b[0]
var read int
b = b[1:]
if isfixstr(lead) {
read = int(rfixstr(lead))
} else {
switch lead {
case mstr8:
if len(b) < 1 {
err = ErrShortBytes
return
}
read = int(b[0])
b = b[1:]
case mstr16:
if len(b) < 2 {
err = ErrShortBytes
return
}
read = int(big.Uint16(b))
b = b[2:]
case mstr32:
if len(b) < 4 {
err = ErrShortBytes
return
}
read = int(big.Uint32(b))
b = b[4:]
default:
err = TypeError{Method: StrType, Encoded: getType(lead)}
return
}
}
if len(b) < read {
err = ErrShortBytes
return
}
v = b[0:read]
o = b[read:]
return
}
// ReadStringBytes reads a 'str' object
// from 'b' and returns its value and the
// remaining bytes in 'b'.
//
// Possible errors:
//
// - [ErrShortBytes] (b not long enough)
// - [TypeError] (not 'str' type)
// - [InvalidPrefixError]
func ReadStringBytes(b []byte) (string, []byte, error) {
v, o, err := ReadStringZC(b)
return string(v), o, err
}
// ReadStringAsBytes reads a 'str' object
// into a slice of bytes. 'v' is the value of
// the 'str' object, which may reside in memory
// pointed to by 'scratch.' 'o' is the remaining bytes
// in 'b'.
//
// Possible errors:
//
// - [ErrShortBytes] (b not long enough)
// - [TypeError] (not 'str' type)
// - [InvalidPrefixError] (unknown type marker)
func ReadStringAsBytes(b []byte, scratch []byte) (v []byte, o []byte, err error) {
var tmp []byte
tmp, o, err = ReadStringZC(b)
v = append(scratch[:0], tmp...)
return
}
// ReadComplex128Bytes reads a complex128
// extension object from 'b' and returns the
// remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (not enough bytes in 'b')
// - [TypeError] (object not a complex128)
// - [InvalidPrefixError]
// - [ExtensionTypeError] (object an extension of the correct size, but not a complex128)
func ReadComplex128Bytes(b []byte) (c complex128, o []byte, err error) {
if len(b) < 18 {
err = ErrShortBytes
return
}
if b[0] != mfixext16 {
err = badPrefix(Complex128Type, b[0])
return
}
if int8(b[1]) != Complex128Extension {
err = errExt(int8(b[1]), Complex128Extension)
return
}
c = complex(math.Float64frombits(big.Uint64(b[2:])),
math.Float64frombits(big.Uint64(b[10:])))
o = b[18:]
return
}
// ReadComplex64Bytes reads a complex64
// extension object from 'b' and returns the
// remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (not enough bytes in 'b')
// - [TypeError] (object not a complex64)
// - [ExtensionTypeError] (object an extension of the correct size, but not a complex64)
func ReadComplex64Bytes(b []byte) (c complex64, o []byte, err error) {
if len(b) < 10 {
err = ErrShortBytes
return
}
if b[0] != mfixext8 {
err = badPrefix(Complex64Type, b[0])
return
}
if b[1] != Complex64Extension {
err = errExt(int8(b[1]), Complex64Extension)
return
}
c = complex(math.Float32frombits(big.Uint32(b[2:])),
math.Float32frombits(big.Uint32(b[6:])))
o = b[10:]
return
}
// ReadTimeBytes reads a time.Time
// extension object from 'b' and returns the
// remaining bytes.
// Both the official and the format in this package will be read.
//
// Possible errors:
//
// - [ErrShortBytes] (not enough bytes in 'b')
// - [TypeError] (object not a time extension 5 or -1)
// - [ExtensionTypeError] (object an extension of the correct size, but not a time.Time)
func ReadTimeBytes(b []byte) (t time.Time, o []byte, err error) {
if len(b) < 6 {
err = ErrShortBytes
return
}
typ, o, b, err := readExt(b)
if err != nil {
return
}
switch typ {
case TimeExtension:
if len(b) != 12 {
err = ErrShortBytes
return
}
sec, nsec := getUnix(b)
t = time.Unix(sec, int64(nsec)).Local()
return
case MsgTimeExtension:
switch len(b) {
case 4:
t = time.Unix(int64(binary.BigEndian.Uint32(b)), 0).Local()
return
case 8:
v := binary.BigEndian.Uint64(b)
nanos := int64(v >> 34)
if nanos > 999999999 {
// In timestamp 64 and timestamp 96 formats, nanoseconds must not be larger than 999999999.
err = InvalidTimestamp{Nanos: nanos}
return
}
t = time.Unix(int64(v&(1<<34-1)), nanos).Local()
return
case 12:
nanos := int64(binary.BigEndian.Uint32(b))
if nanos > 999999999 {
// In timestamp 64 and timestamp 96 formats, nanoseconds must not be larger than 999999999.
err = InvalidTimestamp{Nanos: nanos}
return
}
ux := int64(binary.BigEndian.Uint64(b[4:]))
t = time.Unix(ux, nanos).Local()
return
default:
err = InvalidTimestamp{FieldLength: len(b)}
return
}
default:
err = errExt(int8(b[2]), TimeExtension)
return
}
}
// ReadMapStrIntfBytes reads a map[string]interface{}
// out of 'b' and returns the map and remaining bytes.
// If 'old' is non-nil, the values will be read into that map.
func ReadMapStrIntfBytes(b []byte, old map[string]interface{}) (v map[string]interface{}, o []byte, err error) {
return readMapStrIntfBytesDepth(b, old, 0)
}
func readMapStrIntfBytesDepth(b []byte, old map[string]interface{}, depth int) (v map[string]interface{}, o []byte, err error) {
if depth >= recursionLimit {
err = ErrRecursion
return
}
var sz uint32
o = b
sz, o, err = ReadMapHeaderBytes(o)
if err != nil {
return
}
if old != nil {
for key := range old {
delete(old, key)
}
v = old
} else {
v = make(map[string]interface{}, int(sz))
}
for z := uint32(0); z < sz; z++ {
if len(o) < 1 {
err = ErrShortBytes
return
}
var key []byte
key, o, err = ReadMapKeyZC(o)
if err != nil {
return
}
var val interface{}
val, o, err = readIntfBytesDepth(o, depth)
if err != nil {
return
}
v[string(key)] = val
}
return
}
// ReadIntfBytes attempts to read
// the next object out of 'b' as a raw interface{} and
// return the remaining bytes.
func ReadIntfBytes(b []byte) (i interface{}, o []byte, err error) {
return readIntfBytesDepth(b, 0)
}
func readIntfBytesDepth(b []byte, depth int) (i interface{}, o []byte, err error) {
if depth >= recursionLimit {
err = ErrRecursion
return
}
if len(b) < 1 {
err = ErrShortBytes
return
}
k := NextType(b)
switch k {
case MapType:
i, o, err = readMapStrIntfBytesDepth(b, nil, depth+1)
return
case ArrayType:
var sz uint32
sz, o, err = ReadArrayHeaderBytes(b)
if err != nil {
return
}
j := make([]interface{}, int(sz))
i = j
for d := range j {
j[d], o, err = readIntfBytesDepth(o, depth+1)
if err != nil {
return
}
}
return
case Float32Type:
i, o, err = ReadFloat32Bytes(b)
return
case Float64Type:
i, o, err = ReadFloat64Bytes(b)
return
case IntType:
i, o, err = ReadInt64Bytes(b)
return
case UintType:
i, o, err = ReadUint64Bytes(b)
return
case BoolType:
i, o, err = ReadBoolBytes(b)
return
case TimeType:
i, o, err = ReadTimeBytes(b)
return
case Complex64Type:
i, o, err = ReadComplex64Bytes(b)
return
case Complex128Type:
i, o, err = ReadComplex128Bytes(b)
return
case ExtensionType:
var t int8
t, err = peekExtension(b)
if err != nil {
return
}
// use a user-defined extension,
// if it's been registered
f, ok := extensionReg[t]
if ok {
e := f()
o, err = ReadExtensionBytes(b, e)
i = e
return
}
// last resort is a raw extension
e := RawExtension{}
e.Type = int8(t)
o, err = ReadExtensionBytes(b, &e)
i = &e
return
case NilType:
o, err = ReadNilBytes(b)
return
case BinType:
i, o, err = ReadBytesBytes(b, nil)
return
case StrType:
i, o, err = ReadStringBytes(b)
return
default:
err = InvalidPrefixError(b[0])
return
}
}
// Skip skips the next object in 'b' and
// returns the remaining bytes. If the object
// is a map or array, all of its elements
// will be skipped.
//
// Possible errors:
//
// - [ErrShortBytes] (not enough bytes in b)
// - [InvalidPrefixError] (bad encoding)
// - [ErrRecursion] (too deeply nested data)
func Skip(b []byte) ([]byte, error) {
return skipDepth(b, 0)
}
func skipDepth(b []byte, depth int) ([]byte, error) {
if depth >= recursionLimit {
return b, ErrRecursion
}
sz, asz, err := getSize(b)
if err != nil {
return b, err
}
if uintptr(len(b)) < sz {
return b, ErrShortBytes
}
b = b[sz:]
for asz > 0 {
b, err = skipDepth(b, depth+1)
if err != nil {
return b, err
}
asz--
}
return b, nil
}
// returns (skip N bytes, skip M objects, error)
func getSize(b []byte) (uintptr, uintptr, error) {
l := len(b)
if l == 0 {
return 0, 0, ErrShortBytes
}
lead := b[0]
spec := getBytespec(lead) // get type information
size, mode := spec.size, spec.extra
if size == 0 {
return 0, 0, InvalidPrefixError(lead)
}
if mode >= 0 { // fixed composites
return uintptr(size), uintptr(mode), nil
}
if l < int(size) {
return 0, 0, ErrShortBytes
}
switch mode {
case extra8:
return uintptr(size) + uintptr(b[1]), 0, nil
case extra16:
return uintptr(size) + uintptr(big.Uint16(b[1:])), 0, nil
case extra32:
return uintptr(size) + uintptr(big.Uint32(b[1:])), 0, nil
case map16v:
return uintptr(size), 2 * uintptr(big.Uint16(b[1:])), nil
case map32v:
return uintptr(size), 2 * uintptr(big.Uint32(b[1:])), nil
case array16v:
return uintptr(size), uintptr(big.Uint16(b[1:])), nil
case array32v:
return uintptr(size), uintptr(big.Uint32(b[1:])), nil
default:
return 0, 0, fatal
}
}
// ReadJSONNumberBytes tries to read a number
// from 'b' and return the value and the remaining bytes.
//
// Possible errors:
//
// - [ErrShortBytes] (too few bytes)
// - TypeError (not a number (int/float))
func ReadJSONNumberBytes(b []byte) (number json.Number, o []byte, err error) {
if len(b) < 1 {
return "", nil, ErrShortBytes
}
if i, o, err := ReadInt64Bytes(b); err == nil {
return json.Number(strconv.FormatInt(i, 10)), o, nil
}
f, o, err := ReadFloat64Bytes(b)
if err == nil {
return json.Number(strconv.FormatFloat(f, 'f', -1, 64)), o, nil
}
return "", nil, TypeError{Method: NumberType, Encoded: getType(b[0])}
}
|