structures
AttributeValues
Container which keep values of Attribute definitions.
Goal is to have one object which hold values of attribute definitions for single instance.
Has dictionary like methods. Not all of them are allowed all the time.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parent | Union[CreatedInstance, PublishAttributes] | Parent object. | required |
key | str | Key of attribute values. | required |
attr_defs | List[AbstractAttrDef] | Definitions of value type and properties. | required |
values | dict | Values after possible conversion. | required |
origin_data | dict | Values loaded from host before conversion. | None |
Source code in client/ayon_core/pipeline/create/structures.py
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 |
|
attr_defs
property
Pointer to attribute definitions.
Returns:
Type | Description |
---|---|
List[AbstractAttrDef]: Attribute definitions. |
data_to_store()
Create new dictionary with data to store.
Returns:
Type | Description |
---|---|
Dict[str, Any]: Attribute values that should be stored. |
Source code in client/ayon_core/pipeline/create/structures.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
|
get_serialized_attr_defs()
Serialize attribute definitions to json serializable types.
Returns:
Type | Description |
---|---|
List[Dict[str, Any]]: Serialized attribute definitions. |
Source code in client/ayon_core/pipeline/create/structures.py
222 223 224 225 226 227 228 229 |
|
ConvertorItem
Item representing convertor plugin.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier | str | Identifier of convertor. | required |
label | str | Label which will be shown in UI. | required |
Source code in client/ayon_core/pipeline/create/structures.py
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 |
|
CreatedInstance
Instance entity with data that will be stored to workfile.
I think data
must be required argument containing all minimum information about instance like "folderPath" and "task" and all data used for filling product name as creators may have custom data for product name filling.
Notes
Object have 2 possible initialization. One using 'creator' object which is recommended for api usage. Second by passing information about creator.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
product_type | str | Product type that will be created. | required |
product_name | str | Name of product that will be created. | required |
data | Dict[str, Any] | Data used for filling product name or override data from already existing instance. | required |
creator | BaseCreator | Creator responsible for instance. | required |
Source code in client/ayon_core/pipeline/create/structures.py
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 |
|
creator_attribute_defs
property
Attribute definitions defined by creator plugin.
Returns:
Type | Description |
---|---|
List[AbstractAttrDef]: Attribute definitions. |
data
property
Legacy access to data.
Access to data is needed to modify values.
Returns:
Name | Type | Description |
---|---|---|
CreatedInstance | Object can be used as dictionary but with validations of immutable keys. |
has_promised_context
property
Get context data that are promised to be set by creator.
Returns:
Name | Type | Description |
---|---|---|
bool | bool | Has context that won't bo validated. Artist can't change value when set to True. |
id
property
Instance identifier.
Returns:
Name | Type | Description |
---|---|---|
str | UUID of instance. |
transient_data
property
Data stored for lifetime of instance object.
These data are not stored to scene and will be lost on object deletion.
Can be used to store objects. In some host implementations is not possible to reference to object in scene with some unique identifier (e.g. node in Fusion.). In that case it is handy to store the object here. Should be used that way only if instance data are stored on the node itself.
Returns:
Type | Description |
---|---|
Dict[str, Any]: Dictionary object where you can store data related to instance for lifetime of instance object. |
add_members(members)
Currently unused method.
Source code in client/ayon_core/pipeline/create/structures.py
878 879 880 881 882 883 |
|
attribute_value_changed(key, changes)
A value changed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key | str | Key of attribute values. | required |
changes | Dict[str, Any] | Changes in values. | required |
Source code in client/ayon_core/pipeline/create/structures.py
836 837 838 839 840 841 842 843 844 |
|
changes()
Calculate and return changes.
Source code in client/ayon_core/pipeline/create/structures.py
684 685 686 687 |
|
data_to_store()
Collect data that contain json parsable types.
It is possible to recreate the instance using these data.
Todos
We probably don't need OrderedDict. When data are loaded they are not ordered anymore.
Returns:
Name | Type | Description |
---|---|---|
OrderedDict | Ordered dictionary with instance data. |
Source code in client/ayon_core/pipeline/create/structures.py
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 |
|
from_existing(instance_data, creator, transient_data=None)
classmethod
Convert instance data from workfile to CreatedInstance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
instance_data | Dict[str, Any] | Data in a structure ready for 'CreatedInstance' object. | required |
creator | BaseCreator | Creator plugin which is creating the instance of for which the instance belongs. | required |
transient_data | Optional[dict[str, Any]] | Instance transient data. | None |
Returns:
Name | Type | Description |
---|---|---|
CreatedInstance | CreatedInstance | Instance object. |
Source code in client/ayon_core/pipeline/create/structures.py
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 |
|
mark_as_stored()
Should be called when instance data are stored.
Origin data are replaced by current data so changes are cleared.
Source code in client/ayon_core/pipeline/create/structures.py
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 |
|
publish_attribute_value_changed(plugin_name, value)
Method called from PublishAttributes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plugin_name | str | Plugin name. | required |
value | Dict[str, Any] | Changes in values for the plugin. | required |
Source code in client/ayon_core/pipeline/create/structures.py
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 |
|
set_create_attr_defs(attr_defs, value=None)
Create plugin updates create attribute definitions.
Method called by create plugin when attribute definitions should be changed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
attr_defs | List[AbstractAttrDef] | Attribute definitions. | required |
value | Optional[Dict[str, Any]] | Values of attribute definitions. Current values are used if not passed in. | None |
Source code in client/ayon_core/pipeline/create/structures.py
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 |
|
set_publish_plugin_attr_defs(plugin_name, attr_defs)
Set attribute definitions for publish plugin.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plugin_name(str) | Name of publish plugin. | required | |
attr_defs(List[AbstractAttrDef]) | Attribute definitions. | required |
Source code in client/ayon_core/pipeline/create/structures.py
846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
|
CreatorAttributeValues
Bases: AttributeValues
Creator specific attribute values of an instance.
Source code in client/ayon_core/pipeline/create/structures.py
232 233 234 235 236 237 |
|
InstanceMember
Representation of instance member.
TODO: Implement and use!
Source code in client/ayon_core/pipeline/create/structures.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
PublishAttributeValues
Bases: AttributeValues
Publish plugin specific attribute values.
Values are for single plugin which can be on CreatedInstance
or context values stored on CreateContext
.
Source code in client/ayon_core/pipeline/create/structures.py
240 241 242 243 244 245 246 247 248 249 |
|
PublishAttributes
Wrapper for publish plugin attribute definitions.
Cares about handling attribute definitions of multiple publish plugins. Keep information about attribute definitions and their values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parent(CreatedInstance, | CreateContext | Parent for which will be data stored and from which are data loaded. | required |
origin_data(dict) | Loaded data by plugin class name. | required |
Source code in client/ayon_core/pipeline/create/structures.py
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 |
|
data_to_store()
Convert attribute values to "data to store".
Source code in client/ayon_core/pipeline/create/structures.py
320 321 322 323 324 325 326 327 328 |
|
pop(key, default=None)
Remove or reset value for plugin.
Plugin values are reset to defaults if plugin is available but data of plugin which was not found are removed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key(str) | Plugin name. | required | |
default | Default value if plugin was not found. | None |
Source code in client/ayon_core/pipeline/create/structures.py
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 |
|
set_publish_plugin_attr_defs(plugin_name, attr_defs, value=None)
Set attribute definitions for plugin.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plugin_name | str | Name of plugin. | required |
attr_defs | List[AbstractAttrDef] | Attribute definitions. | required |
value | Optional[Dict[str, Any]] | Attribute values. | None |
Source code in client/ayon_core/pipeline/create/structures.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
|