GlobalJobPreLoad
OpenPypeVersion
Fake semver version class for OpenPype version purposes.
The version
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
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 | |
from_string(version) classmethod
Create an object of version from string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
version | str | Version as a string. | required |
Returns:
| Type | Description |
|---|---|
| Union[OpenPypeVersion, None]: Version object if input is nonempty string otherwise None. |
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
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 | |
has_compatible_release(other)
Version has compatible release as other version.
Both major and minor versions must be exactly the same. In that case a build can be considered as release compatible with any version.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other | OpenPypeVersion | Other version. | required |
Returns:
| Name | Type | Description |
|---|---|---|
bool | Version is release compatible with other version. |
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
get_ayon_executable()
Return AYON Executable from Event Plug-in Settings
Returns:
| Type | Description |
|---|---|
| list[str]: AYON executable paths. |
Raises:
| Type | Description |
|---|---|
RuntimeError | When no path configured at all. |
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
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 | |
get_openpype_executable()
Return OpenPype Executable from Event Plug-in Settings
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
193 194 195 196 197 198 199 200 201 202 203 204 | |
get_openpype_version_from_path(path, build=True)
Get OpenPype version from provided path. path (str): Path to scan. build (bool, optional): Get only builds, not sources
Returns:
| Type | Description |
|---|---|
| Union[OpenPypeVersion, None]: version of OpenPype if found. |
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
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 | |
handle_credentials(job)
Returns a tuple of values for AYON_SERVER_URL and AYON_API_KEY
AYON_API_KEY might be overridden directly from job environments. Or specific AYON_SERVER_URL might be attached to job to pick corespondent AYON_API_KEY from plugin configuration.
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
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 | |
inject_ayon_environment(deadlinePlugin)
Pull env vars from AYON and push them to rendering process.
Used for correct paths, configuration from AYON etc.
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
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 | |
inject_openpype_environment(deadlinePlugin)
Pull env vars from OpenPype and push them to rendering process.
Used for correct paths, configuration from OpenPype etc.
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
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 | |
inject_render_job_id(deadlinePlugin)
Inject dependency ids to publish process as env var for validation.
Source code in client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 | |