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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include "cbor.h"
#include <aws/common/cbor.h>
/*******************************************************************************
* ENCODE
******************************************************************************/
static const char *s_capsule_name_cbor_encoder = "aws_cbor_encoder";
static struct aws_cbor_encoder *s_cbor_encoder_from_capsule(PyObject *py_capsule) {
return PyCapsule_GetPointer(py_capsule, s_capsule_name_cbor_encoder);
}
/* Runs when GC destroys the capsule */
static void s_cbor_encoder_capsule_destructor(PyObject *py_capsule) {
struct aws_cbor_encoder *encoder = s_cbor_encoder_from_capsule(py_capsule);
if (encoder) {
aws_cbor_encoder_destroy(encoder);
}
}
PyObject *aws_py_cbor_encoder_new(PyObject *self, PyObject *args) {
(void)self;
(void)args;
struct aws_cbor_encoder *encoder = aws_cbor_encoder_new(aws_py_get_allocator());
AWS_ASSERT(encoder != NULL);
PyObject *py_capsule = PyCapsule_New(encoder, s_capsule_name_cbor_encoder, s_cbor_encoder_capsule_destructor);
if (!py_capsule) {
aws_cbor_encoder_destroy(encoder);
return NULL;
}
return py_capsule;
}
PyObject *aws_py_cbor_encoder_get_encoded_data(PyObject *self, PyObject *args) {
(void)self;
PyObject *py_capsule = NULL;
if (!PyArg_ParseTuple(args, "O", &py_capsule)) {
return NULL;
}
struct aws_cbor_encoder *encoder = s_cbor_encoder_from_capsule(py_capsule);
if (!encoder) {
return NULL;
}
struct aws_byte_cursor encoded_data = aws_cbor_encoder_get_encoded_data(encoder);
return PyBytes_FromStringAndSize((const char *)encoded_data.ptr, encoded_data.len);
}
#define S_ENCODER_WRITE_PYOBJECT(ctype, py_conversion, field) \
static PyObject *s_cbor_encoder_write_pyobject_as_##field(struct aws_cbor_encoder *encoder, PyObject *py_object) { \
ctype data = py_conversion(py_object); \
if (PyErr_Occurred()) { \
/* Add context to make debugging easier */ \
PyErr_Format(PyExc_TypeError, "Failed to convert Python object to " #ctype " for CBOR " #field); \
return NULL; \
} \
aws_cbor_encoder_write_##field(encoder, data); \
Py_RETURN_NONE; \
}
S_ENCODER_WRITE_PYOBJECT(uint64_t, PyLong_AsUnsignedLongLong, uint)
S_ENCODER_WRITE_PYOBJECT(uint64_t, PyLong_AsUnsignedLongLong, negint)
S_ENCODER_WRITE_PYOBJECT(double, PyFloat_AsDouble, float)
S_ENCODER_WRITE_PYOBJECT(struct aws_byte_cursor, aws_byte_cursor_from_pybytes, bytes)
S_ENCODER_WRITE_PYOBJECT(struct aws_byte_cursor, aws_byte_cursor_from_pyunicode, text)
S_ENCODER_WRITE_PYOBJECT(bool, PyObject_IsTrue, bool)
S_ENCODER_WRITE_PYOBJECT(uint64_t, PyLong_AsUnsignedLongLong, array_start)
S_ENCODER_WRITE_PYOBJECT(uint64_t, PyLong_AsUnsignedLongLong, map_start)
S_ENCODER_WRITE_PYOBJECT(uint64_t, PyLong_AsUnsignedLongLong, tag)
static PyObject *s_cbor_encoder_write_pyobject(struct aws_cbor_encoder *encoder, PyObject *py_object);
static PyObject *s_cbor_encoder_write_pylong(struct aws_cbor_encoder *encoder, PyObject *py_object) {
long val = 0;
int overflow = 0;
val = PyLong_AsLongAndOverflow(py_object, &overflow);
if (overflow == 0) {
if (val >= 0) {
aws_cbor_encoder_write_uint(encoder, (uint64_t)val);
} else {
uint64_t val_unsigned = (uint64_t)(-val) - 1;
aws_cbor_encoder_write_negint(encoder, val_unsigned);
}
} else if (overflow < 0) {
/**
* The py object is negative and too small.
* Convert the value to -1 - value in python to encode.
*/
PyObject *abs_val = PyNumber_Negative(py_object);
if (!abs_val) {
return NULL;
}
PyObject *minus_one = PyLong_FromLong(1);
if (!minus_one) {
Py_DECREF(abs_val);
return NULL;
}
/* -value - 1 */
PyObject *result = PyNumber_Subtract(abs_val, minus_one);
Py_DECREF(abs_val);
Py_DECREF(minus_one);
if (!result) {
return NULL;
}
/* Convert to uint64_t and check for overflow */
uint64_t val_to_encode = PyLong_AsUnsignedLongLong(result);
Py_DECREF(result);
if (PyErr_Occurred()) {
/* Value is too large even for uint64_t */
PyErr_SetString(PyExc_OverflowError, "The integer is too large, BigNumber is not supported yet.");
return NULL;
}
aws_cbor_encoder_write_negint(encoder, val_to_encode);
} else {
uint64_t val_to_encode = PyLong_AsUnsignedLongLong(py_object);
if (PyErr_Occurred()) {
/* Value is too large for uint64_t */
PyErr_SetString(PyExc_OverflowError, "The integer is too large, BigNumber is not supported yet.");
return NULL;
}
aws_cbor_encoder_write_uint(encoder, val_to_encode);
}
Py_RETURN_NONE;
}
static PyObject *s_cbor_encoder_write_pylist(struct aws_cbor_encoder *encoder, PyObject *py_list) {
Py_ssize_t size = PyList_Size(py_list);
aws_cbor_encoder_write_array_start(encoder, (size_t)size);
for (Py_ssize_t i = 0; i < size; i++) {
PyObject *item = PyList_GetItem(py_list, i);
if (!item) {
PyErr_SetString(PyExc_RuntimeError, "Failed to get item from list");
return NULL;
}
PyObject *result = s_cbor_encoder_write_pyobject(encoder, item);
if (!result) {
// Error already set by s_cbor_encoder_write_pyobject
return NULL;
}
Py_DECREF(result);
}
Py_RETURN_NONE;
}
static PyObject *s_cbor_encoder_write_pydict(struct aws_cbor_encoder *encoder, PyObject *py_dict) {
Py_ssize_t size = PyDict_Size(py_dict);
aws_cbor_encoder_write_map_start(encoder, (size_t)size);
PyObject *key = NULL;
PyObject *value = NULL;
Py_ssize_t pos = 0;
while (PyDict_Next(py_dict, &pos, &key, &value)) {
PyObject *key_result = s_cbor_encoder_write_pyobject(encoder, key);
if (!key_result) {
// Error already set by s_cbor_encoder_write_pyobject
return NULL;
}
Py_DECREF(key_result);
PyObject *value_result = s_cbor_encoder_write_pyobject(encoder, value);
if (!value_result) {
// Error already set by s_cbor_encoder_write_pyobject
return NULL;
}
Py_DECREF(value_result);
}
Py_RETURN_NONE;
}
static PyObject *s_cbor_encoder_write_pyobject(struct aws_cbor_encoder *encoder, PyObject *py_object) {
/**
* TODO: timestamp <-> datetime?? Decimal fraction <-> decimal??
*/
if (PyLong_CheckExact(py_object)) {
return s_cbor_encoder_write_pylong(encoder, py_object);
} else if (PyFloat_CheckExact(py_object)) {
return s_cbor_encoder_write_pyobject_as_float(encoder, py_object);
} else if (PyBool_Check(py_object)) {
return s_cbor_encoder_write_pyobject_as_bool(encoder, py_object);
} else if (PyBytes_CheckExact(py_object)) {
return s_cbor_encoder_write_pyobject_as_bytes(encoder, py_object);
} else if (PyUnicode_Check(py_object)) {
/* Allow subclasses of `str` */
return s_cbor_encoder_write_pyobject_as_text(encoder, py_object);
} else if (PyList_Check(py_object)) {
/* Write py_list, allow subclasses of `list` */
return s_cbor_encoder_write_pylist(encoder, py_object);
} else if (PyDict_Check(py_object)) {
/* Write py_dict, allow subclasses of `dict` */
return s_cbor_encoder_write_pydict(encoder, py_object);
} else if (py_object == Py_None) {
aws_cbor_encoder_write_null(encoder);
} else {
PyErr_Format(PyExc_ValueError, "Not supported type %R", (PyObject *)Py_TYPE(py_object));
}
Py_RETURN_NONE;
}
/*********************************** BINDINGS ***********************************************/
#define ENCODER_WRITE(field, encoder_fn) \
PyObject *aws_py_cbor_encoder_write_##field(PyObject *self, PyObject *args) { \
(void)self; \
PyObject *py_object; \
PyObject *py_capsule; \
if (!PyArg_ParseTuple(args, "OO", &py_capsule, &py_object)) { \
return NULL; \
} \
struct aws_cbor_encoder *encoder = s_cbor_encoder_from_capsule(py_capsule); \
if (!encoder) { \
return NULL; \
} \
return encoder_fn(encoder, py_object); \
}
ENCODER_WRITE(uint, s_cbor_encoder_write_pyobject_as_uint)
ENCODER_WRITE(negint, s_cbor_encoder_write_pyobject_as_negint)
ENCODER_WRITE(float, s_cbor_encoder_write_pyobject_as_float)
ENCODER_WRITE(bytes, s_cbor_encoder_write_pyobject_as_bytes)
ENCODER_WRITE(text, s_cbor_encoder_write_pyobject_as_text)
ENCODER_WRITE(bool, s_cbor_encoder_write_pyobject_as_bool)
ENCODER_WRITE(array_start, s_cbor_encoder_write_pyobject_as_array_start)
ENCODER_WRITE(map_start, s_cbor_encoder_write_pyobject_as_map_start)
ENCODER_WRITE(tag, s_cbor_encoder_write_pyobject_as_tag)
ENCODER_WRITE(py_list, s_cbor_encoder_write_pylist)
ENCODER_WRITE(py_dict, s_cbor_encoder_write_pydict)
ENCODER_WRITE(data_item, s_cbor_encoder_write_pyobject)
PyObject *aws_py_cbor_encoder_write_simple_types(PyObject *self, PyObject *args) {
(void)self;
PyObject *py_capsule = NULL;
Py_ssize_t type_enum = AWS_CBOR_TYPE_UNKNOWN;
if (!PyArg_ParseTuple(args, "On", &py_capsule, &type_enum)) {
return NULL;
}
struct aws_cbor_encoder *encoder = s_cbor_encoder_from_capsule(py_capsule);
if (!encoder) {
return NULL;
}
switch (type_enum) {
case AWS_CBOR_TYPE_NULL:
aws_cbor_encoder_write_null(encoder);
break;
case AWS_CBOR_TYPE_UNDEFINED:
aws_cbor_encoder_write_undefined(encoder);
break;
case AWS_CBOR_TYPE_INDEF_ARRAY_START:
aws_cbor_encoder_write_indef_array_start(encoder);
break;
case AWS_CBOR_TYPE_INDEF_MAP_START:
aws_cbor_encoder_write_indef_map_start(encoder);
break;
case AWS_CBOR_TYPE_INDEF_BYTES_START:
aws_cbor_encoder_write_indef_bytes_start(encoder);
break;
case AWS_CBOR_TYPE_INDEF_TEXT_START:
aws_cbor_encoder_write_indef_text_start(encoder);
break;
case AWS_CBOR_TYPE_BREAK:
aws_cbor_encoder_write_break(encoder);
break;
default:
PyErr_Format(PyExc_ValueError, "Not supported simple type");
return NULL;
}
Py_RETURN_NONE;
}
/*******************************************************************************
* DECODE
******************************************************************************/
struct decoder_binding {
struct aws_cbor_decoder *native;
/* Encoder has simple lifetime, no async/multi-thread allowed. */
PyObject *self_py;
};
static const char *s_capsule_name_cbor_decoder = "aws_cbor_decoder";
static struct aws_cbor_decoder *s_cbor_decoder_from_capsule(PyObject *py_capsule) {
struct decoder_binding *binding = PyCapsule_GetPointer(py_capsule, s_capsule_name_cbor_decoder);
if (!binding) {
return NULL;
}
return binding->native;
}
/* Runs when GC destroys the capsule */
static void s_cbor_decoder_capsule_destructor(PyObject *py_capsule) {
struct decoder_binding *binding = PyCapsule_GetPointer(py_capsule, s_capsule_name_cbor_decoder);
if (binding) {
aws_cbor_decoder_destroy(binding->native);
aws_mem_release(aws_py_get_allocator(), binding);
}
}
PyObject *aws_py_cbor_decoder_new(PyObject *self, PyObject *args) {
(void)self;
/* The python object will keep the src alive from python. */
PyObject *py_self = NULL;
struct aws_byte_cursor src = {0}; /* s# */
if (!PyArg_ParseTuple(args, "Os#", &py_self, &src.ptr, &src.len)) {
return NULL;
}
struct decoder_binding *binding = aws_mem_calloc(aws_py_get_allocator(), 1, sizeof(struct decoder_binding));
binding->native = aws_cbor_decoder_new(aws_py_get_allocator(), src);
AWS_ASSERT(binding->native != NULL);
PyObject *py_capsule = PyCapsule_New(binding, s_capsule_name_cbor_decoder, s_cbor_decoder_capsule_destructor);
if (!py_capsule) {
aws_cbor_decoder_destroy(binding->native);
aws_mem_release(aws_py_get_allocator(), binding);
return NULL;
}
/* The binding and the py_object have the same life time */
binding->self_py = py_self;
return py_capsule;
}
static struct aws_cbor_decoder *s_get_decoder_from_py_arg(PyObject *self, PyObject *args) {
(void)self;
PyObject *py_capsule = NULL;
if (!PyArg_ParseTuple(args, "O", &py_capsule)) {
return NULL;
}
return s_cbor_decoder_from_capsule(py_capsule);
}
#define S_POP_NEXT_TO_PYOBJECT(ctype, field, py_conversion) \
static PyObject *s_cbor_decoder_pop_next_##field##_to_pyobject(struct aws_cbor_decoder *decoder) { \
ctype out_val; \
if (aws_cbor_decoder_pop_next_##field(decoder, &out_val)) { \
return PyErr_AwsLastError(); \
} \
return py_conversion(out_val); \
}
#define S_POP_NEXT_TO_PYOBJECT_CURSOR(field, py_conversion) \
static PyObject *s_cbor_decoder_pop_next_##field##_to_pyobject(struct aws_cbor_decoder *decoder) { \
struct aws_byte_cursor out_val; \
if (aws_cbor_decoder_pop_next_##field(decoder, &out_val)) { \
return PyErr_AwsLastError(); \
} \
return py_conversion(&out_val); \
}
S_POP_NEXT_TO_PYOBJECT(uint64_t, unsigned_int_val, PyLong_FromUnsignedLongLong)
S_POP_NEXT_TO_PYOBJECT(uint64_t, negative_int_val, PyLong_FromUnsignedLongLong)
S_POP_NEXT_TO_PYOBJECT(double, float_val, PyFloat_FromDouble)
S_POP_NEXT_TO_PYOBJECT(bool, boolean_val, PyBool_FromLong)
S_POP_NEXT_TO_PYOBJECT_CURSOR(bytes_val, PyBytes_FromAwsByteCursor)
S_POP_NEXT_TO_PYOBJECT_CURSOR(text_val, PyUnicode_FromAwsByteCursor)
S_POP_NEXT_TO_PYOBJECT(uint64_t, array_start, PyLong_FromUnsignedLongLong)
S_POP_NEXT_TO_PYOBJECT(uint64_t, map_start, PyLong_FromUnsignedLongLong)
S_POP_NEXT_TO_PYOBJECT(uint64_t, tag_val, PyLong_FromUnsignedLongLong)
static PyObject *s_cbor_decoder_pop_next_data_item_to_pyobject(struct decoder_binding *binding);
/**
* helper to convert next data item to py_list
*/
static PyObject *s_cbor_decoder_pop_next_data_item_to_py_list(struct decoder_binding *binding) {
struct aws_cbor_decoder *decoder = binding->native;
enum aws_cbor_type out_type = AWS_CBOR_TYPE_UNKNOWN;
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
PyObject *array = NULL;
PyObject *item = NULL;
switch (out_type) {
case AWS_CBOR_TYPE_ARRAY_START: {
uint64_t num_array_item = 0;
aws_cbor_decoder_pop_next_array_start(decoder, &num_array_item);
if (num_array_item > PY_SSIZE_T_MAX) {
PyErr_SetString(PyExc_OverflowError, "number of array is too large to fit.");
return NULL;
}
array = PyList_New((Py_ssize_t)num_array_item);
if (!array) {
return NULL;
}
for (size_t i = 0; i < num_array_item; ++i) {
item = s_cbor_decoder_pop_next_data_item_to_pyobject(binding);
if (!item) {
goto error;
}
PyList_SetItem(array, i, item); /* Steals reference to item */
}
return array;
}
case AWS_CBOR_TYPE_INDEF_ARRAY_START: {
array = PyList_New(0);
if (!array) {
return NULL;
}
/* Consume the inf array start */
aws_cbor_decoder_consume_next_single_element(decoder);
aws_cbor_decoder_peek_type(decoder, &out_type);
while (out_type != AWS_CBOR_TYPE_BREAK) {
item = s_cbor_decoder_pop_next_data_item_to_pyobject(binding);
if (!item) {
goto error;
}
if (PyList_Append(array, item) == -1) {
goto error;
}
/* Append will not steal the reference, deref here. */
Py_DECREF(item);
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
PyErr_AwsLastError();
goto error;
}
}
/* Consume the break element */
aws_cbor_decoder_consume_next_single_element(decoder);
return array;
}
default:
aws_raise_error(AWS_ERROR_CBOR_UNEXPECTED_TYPE);
return PyErr_AwsLastError();
}
error:
if (array) {
Py_DECREF(array);
}
return NULL;
}
/**
* helper to convert next data item to py_dict
*/
static PyObject *s_cbor_decoder_pop_next_data_item_to_py_dict(struct decoder_binding *binding) {
struct aws_cbor_decoder *decoder = binding->native;
enum aws_cbor_type out_type = AWS_CBOR_TYPE_UNKNOWN;
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
PyObject *dict = NULL;
PyObject *key = NULL;
PyObject *value = NULL;
switch (out_type) {
case AWS_CBOR_TYPE_MAP_START: {
uint64_t num_item = 0;
aws_cbor_decoder_pop_next_map_start(decoder, &num_item);
if (num_item > PY_SSIZE_T_MAX) {
PyErr_SetString(PyExc_OverflowError, "number of dict is too large to fit.");
return NULL;
}
dict = PyDict_New();
if (!dict) {
return NULL;
}
for (size_t i = 0; i < num_item; ++i) {
key = s_cbor_decoder_pop_next_data_item_to_pyobject(binding);
value = s_cbor_decoder_pop_next_data_item_to_pyobject(binding);
if (!key || !value) {
goto error;
}
if (PyDict_SetItem(dict, key, value) == -1) {
goto error;
}
Py_DECREF(key);
Py_DECREF(value);
}
return dict;
}
case AWS_CBOR_TYPE_INDEF_MAP_START: {
dict = PyDict_New();
if (!dict) {
return NULL;
}
/* Consume the inf array start */
aws_cbor_decoder_consume_next_single_element(decoder);
aws_cbor_decoder_peek_type(decoder, &out_type);
while (out_type != AWS_CBOR_TYPE_BREAK) {
key = s_cbor_decoder_pop_next_data_item_to_pyobject(binding);
value = s_cbor_decoder_pop_next_data_item_to_pyobject(binding);
if (!key || !value) {
goto error;
}
if (PyDict_SetItem(dict, key, value) == -1) {
goto error;
}
Py_DECREF(key);
Py_DECREF(value);
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
PyErr_AwsLastError();
goto error;
}
}
/* Consume the break element */
aws_cbor_decoder_consume_next_single_element(decoder);
return dict;
}
default:
aws_raise_error(AWS_ERROR_CBOR_UNEXPECTED_TYPE);
return PyErr_AwsLastError();
}
error:
if (dict) {
Py_DECREF(dict);
}
if (key) {
Py_DECREF(key);
}
if (value) {
Py_DECREF(value);
}
return NULL;
}
/**
* helper to get the next inf byte
*/
static PyObject *s_cbor_decoder_pop_next_inf_bytes_to_py_bytes(struct aws_cbor_decoder *decoder) {
enum aws_cbor_type out_type = AWS_CBOR_TYPE_UNKNOWN;
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
if (out_type != AWS_CBOR_TYPE_INDEF_BYTES_START) {
aws_raise_error(AWS_ERROR_CBOR_UNEXPECTED_TYPE);
return PyErr_AwsLastError();
}
/* consume the bytes start element */
aws_cbor_decoder_consume_next_single_element(decoder);
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
/* Empty bytes */
PyObject *result = PyBytes_FromStringAndSize(NULL, 0);
while (out_type != AWS_CBOR_TYPE_BREAK) {
PyObject *next_part = s_cbor_decoder_pop_next_bytes_val_to_pyobject(decoder);
if (!next_part) {
Py_DECREF(result);
return NULL;
}
/* The reference to the old value of bytes will be stolen and next_part will be del. */
PyBytes_ConcatAndDel(&result, next_part);
if (!result) {
return NULL;
}
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
}
/* Consume the break element */
aws_cbor_decoder_consume_next_single_element(decoder);
return result;
}
/**
* helper to get the next inf string
*/
static PyObject *s_cbor_decoder_pop_next_inf_string_to_py_str(struct aws_cbor_decoder *decoder) {
enum aws_cbor_type out_type = AWS_CBOR_TYPE_UNKNOWN;
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
if (out_type != AWS_CBOR_TYPE_INDEF_TEXT_START) {
aws_raise_error(AWS_ERROR_CBOR_UNEXPECTED_TYPE);
return PyErr_AwsLastError();
}
/* consume the bytes start element */
aws_cbor_decoder_consume_next_single_element(decoder);
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
/* Empty string */
PyObject *result = PyUnicode_FromStringAndSize(NULL, 0);
while (out_type != AWS_CBOR_TYPE_BREAK) {
PyObject *next_part = s_cbor_decoder_pop_next_text_val_to_pyobject(decoder);
if (!next_part) {
Py_DECREF(result);
return NULL;
}
/* Returns a new reference and keep the arguments unchanged. */
PyObject *concat_val = PyUnicode_Concat(result, next_part);
Py_DECREF(result);
Py_DECREF(next_part);
if (!concat_val) {
return NULL;
}
result = concat_val;
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
}
/* Consume the break element */
aws_cbor_decoder_consume_next_single_element(decoder);
return result;
}
/**
* Generic helper to convert a cbor encoded data to PyObject
*/
static PyObject *s_cbor_decoder_pop_next_tag_to_pyobject(struct decoder_binding *binding) {
struct aws_cbor_decoder *decoder = binding->native;
uint64_t out_tag_val = 0;
if (aws_cbor_decoder_pop_next_tag_val(decoder, &out_tag_val)) {
return PyErr_AwsLastError();
}
/* TODO: implement those tags */
switch (out_tag_val) {
case AWS_CBOR_TAG_EPOCH_TIME: {
enum aws_cbor_type out_type = AWS_CBOR_TYPE_UNKNOWN;
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
if (out_type == AWS_CBOR_TYPE_FLOAT || out_type == AWS_CBOR_TYPE_UINT || out_type == AWS_CBOR_TYPE_NEGINT) {
PyObject *val = s_cbor_decoder_pop_next_data_item_to_pyobject(binding);
PyObject *result = PyObject_CallMethod(binding->self_py, "_on_epoch_time_callback", "(O)", val);
Py_DECREF(val);
return result;
} else {
aws_raise_error(AWS_ERROR_CBOR_UNEXPECTED_TYPE);
return PyErr_AwsLastError();
}
}
case AWS_CBOR_TAG_UNSIGNED_BIGNUM:
case AWS_CBOR_TAG_NEGATIVE_BIGNUM:
case AWS_CBOR_TAG_DECIMAL_FRACTION:
default:
PyErr_Format(PyExc_ValueError, "Unsupported tag value: %" PRIu64 ".", out_tag_val);
return NULL;
}
Py_RETURN_NONE;
}
/**
* Generic helper to convert a cbor encoded data to PyObject
*/
static PyObject *s_cbor_decoder_pop_next_data_item_to_pyobject(struct decoder_binding *binding) {
struct aws_cbor_decoder *decoder = binding->native;
enum aws_cbor_type out_type = AWS_CBOR_TYPE_UNKNOWN;
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
switch (out_type) {
case AWS_CBOR_TYPE_UINT:
return s_cbor_decoder_pop_next_unsigned_int_val_to_pyobject(decoder);
case AWS_CBOR_TYPE_NEGINT: {
/* The value from native code is -1 - val. */
PyObject *minus_one = PyLong_FromLong(-1);
if (!minus_one) {
return NULL;
}
PyObject *val = s_cbor_decoder_pop_next_negative_int_val_to_pyobject(decoder);
if (!val) {
Py_DECREF(minus_one);
return NULL;
}
PyObject *ret_val = PyNumber_Subtract(minus_one, val);
Py_DECREF(minus_one);
Py_DECREF(val);
return ret_val;
}
case AWS_CBOR_TYPE_FLOAT:
return s_cbor_decoder_pop_next_float_val_to_pyobject(decoder);
case AWS_CBOR_TYPE_BYTES:
return s_cbor_decoder_pop_next_bytes_val_to_pyobject(decoder);
case AWS_CBOR_TYPE_TEXT:
return s_cbor_decoder_pop_next_text_val_to_pyobject(decoder);
case AWS_CBOR_TYPE_BOOL:
return s_cbor_decoder_pop_next_boolean_val_to_pyobject(decoder);
case AWS_CBOR_TYPE_NULL:
/* fall through */
case AWS_CBOR_TYPE_UNDEFINED:
aws_cbor_decoder_consume_next_single_element(decoder);
Py_RETURN_NONE;
case AWS_CBOR_TYPE_MAP_START:
/* fall through */
case AWS_CBOR_TYPE_INDEF_MAP_START:
return s_cbor_decoder_pop_next_data_item_to_py_dict(binding);
case AWS_CBOR_TYPE_ARRAY_START:
/* fall through */
case AWS_CBOR_TYPE_INDEF_ARRAY_START:
return s_cbor_decoder_pop_next_data_item_to_py_list(binding);
case AWS_CBOR_TYPE_INDEF_BYTES_START:
return s_cbor_decoder_pop_next_inf_bytes_to_py_bytes(decoder);
case AWS_CBOR_TYPE_INDEF_TEXT_START:
return s_cbor_decoder_pop_next_inf_string_to_py_str(decoder);
case AWS_CBOR_TYPE_TAG:
return s_cbor_decoder_pop_next_tag_to_pyobject(binding);
default:
aws_raise_error(AWS_ERROR_CBOR_UNEXPECTED_TYPE);
return PyErr_AwsLastError();
}
return NULL;
}
/*********************************** BINDINGS ***********************************************/
PyObject *aws_py_cbor_decoder_peek_type(PyObject *self, PyObject *args) {
struct aws_cbor_decoder *decoder = s_get_decoder_from_py_arg(self, args);
if (!decoder) {
return NULL;
}
enum aws_cbor_type out_type = AWS_CBOR_TYPE_UNKNOWN;
if (aws_cbor_decoder_peek_type(decoder, &out_type)) {
return PyErr_AwsLastError();
}
return PyLong_FromSize_t(out_type);
}
PyObject *aws_py_cbor_decoder_get_remaining_bytes_len(PyObject *self, PyObject *args) {
struct aws_cbor_decoder *decoder = s_get_decoder_from_py_arg(self, args);
if (!decoder) {
return NULL;
}
size_t remaining_len = aws_cbor_decoder_get_remaining_length(decoder);
return PyLong_FromSize_t(remaining_len);
}
PyObject *aws_py_cbor_decoder_consume_next_element(PyObject *self, PyObject *args) {
struct aws_cbor_decoder *decoder = s_get_decoder_from_py_arg(self, args);
if (!decoder) {
return NULL;
}
if (aws_cbor_decoder_consume_next_single_element(decoder)) {
return PyErr_AwsLastError();
}
Py_RETURN_NONE;
}
PyObject *aws_py_cbor_decoder_consume_next_data_item(PyObject *self, PyObject *args) {
struct aws_cbor_decoder *decoder = s_get_decoder_from_py_arg(self, args);
if (!decoder) {
return NULL;
}
if (aws_cbor_decoder_consume_next_whole_data_item(decoder)) {
return PyErr_AwsLastError();
}
Py_RETURN_NONE;
}
#define DECODER_POP(field, decoder_fn) \
PyObject *aws_py_cbor_decoder_pop_next_##field(PyObject *self, PyObject *args) { \
struct aws_cbor_decoder *decoder = s_get_decoder_from_py_arg(self, args); \
if (!decoder) { \
return NULL; \
} \
return decoder_fn(decoder); \
}
#define DECODER_POP_WITH_BINDING(field, decoder_binding_fn) \
PyObject *aws_py_cbor_decoder_pop_next_##field(PyObject *self, PyObject *args) { \
(void)self; \
PyObject *py_capsule = NULL; \
if (!PyArg_ParseTuple(args, "O", &py_capsule)) { \
return NULL; \
} \
struct decoder_binding *binding = PyCapsule_GetPointer(py_capsule, s_capsule_name_cbor_decoder); \
if (!binding) { \
return NULL; \
} \
return decoder_binding_fn(binding); \
}
DECODER_POP(unsigned_int, s_cbor_decoder_pop_next_unsigned_int_val_to_pyobject)
DECODER_POP(negative_int, s_cbor_decoder_pop_next_negative_int_val_to_pyobject)
DECODER_POP(float, s_cbor_decoder_pop_next_float_val_to_pyobject)
DECODER_POP(boolean, s_cbor_decoder_pop_next_boolean_val_to_pyobject)
DECODER_POP(bytes, s_cbor_decoder_pop_next_bytes_val_to_pyobject)
DECODER_POP(text, s_cbor_decoder_pop_next_text_val_to_pyobject)
DECODER_POP(tag, s_cbor_decoder_pop_next_tag_val_to_pyobject)
DECODER_POP(array_start, s_cbor_decoder_pop_next_array_start_to_pyobject)
DECODER_POP(map_start, s_cbor_decoder_pop_next_map_start_to_pyobject)
DECODER_POP_WITH_BINDING(py_list, s_cbor_decoder_pop_next_data_item_to_py_list)
DECODER_POP_WITH_BINDING(py_dict, s_cbor_decoder_pop_next_data_item_to_py_dict)
DECODER_POP_WITH_BINDING(data_item, s_cbor_decoder_pop_next_data_item_to_pyobject)
|