Orchestrator¶
Orchestrator coordinates the machine, state store, guards, and actions for stateful event processing (load state, process, persist, run actions, schedule delayed transitions).
Orchestrator
¶
Orchestrator(machine: StateMachine, state_store: StateStore | AsyncStateStore, guards: GuardRegistry | None = None, actions: ActionRegistry | None = None, *, context_validator: ContextValidatorFn | None = None, executor: _ActionExecutor | None = None, scheduler: SchedulerAdapter | None = None, use_initial_state_when_missing: bool = True, invoke_adapter: InvokeAdapter | None = None, hooks: list[TransitionHook] | None = None, audit_store: AuditStore | None = None, event_store: EventStore | None = None)
Runs the full FSM sandwich loop: load -> process -> persist -> execute.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
machine
|
StateMachine
|
The StateMachine definition. |
required |
state_store
|
StateStore | AsyncStateStore
|
Sync or async state store. |
required |
guards
|
GuardRegistry | None
|
Guard registry (bound to machine automatically). |
None
|
actions
|
ActionRegistry | None
|
Action registry. |
None
|
context_validator
|
ContextValidatorFn | None
|
Optional callable for pre-transition context validation. |
None
|
executor
|
_ActionExecutor | None
|
Optional _ActionExecutor (created automatically if omitted). |
None
|
scheduler
|
SchedulerAdapter | None
|
Optional scheduler for delayed transitions. |
None
|
use_initial_state_when_missing
|
bool
|
Use machine's initial state for new entities. |
True
|
invoke_adapter
|
InvokeAdapter | None
|
Optional adapter to start/stop invoked services on state enter/exit. |
None
|
hooks
|
list[TransitionHook] | None
|
Optional list of TransitionHook implementations for lifecycle callbacks. |
None
|
audit_store
|
AuditStore | None
|
Optional AuditStore for transition audit logging. |
None
|
Context validation options (choose one or combine):
1. ``context_validator`` (recommended for external validation, e.g. PyCharter):
Callable with signature ``(entity_id, state, trigger, context) -> (ok, errors)``.
Runs BEFORE guards. Use for schema or contract validation.
2. ``machine.meta["validate_context"]``: Config-driven, set in YAML/dict.
Validates that required keys exist in context. Lightweight, no external deps.
3. Guards: Use for business-rule validation that depends on state + context.
Runs AFTER context_validator. Best for domain logic (e.g., "is_cancellable").
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
machine
|
StateMachine
|
The StateMachine definition. |
required |
state_store
|
StateStore | AsyncStateStore
|
Sync or async state store for entity persistence. |
required |
guards
|
GuardRegistry | None
|
Optional guard registry (defaults to machine's registry). |
None
|
actions
|
ActionRegistry | None
|
Optional action registry (defaults to machine's registry). |
None
|
context_validator
|
ContextValidatorFn | None
|
Optional pre-transition context validator callable. |
None
|
executor
|
_ActionExecutor | None
|
Optional _ActionExecutor (auto-created if omitted). |
None
|
scheduler
|
SchedulerAdapter | None
|
Optional scheduler for delayed transitions. |
None
|
use_initial_state_when_missing
|
bool
|
Use machine's initial state for new entities. |
True
|
invoke_adapter
|
InvokeAdapter | None
|
Optional adapter for invoked services. |
None
|
hooks
|
list[TransitionHook] | None
|
Optional list of TransitionHook implementations. |
None
|
audit_store
|
AuditStore | None
|
Optional AuditStore for transition audit logging. |
None
|
event_store
|
EventStore | None
|
Optional EventStore for append-only event persistence. |
None
|
Source code in src/pystator/orchestrator.py
process_event
¶
process_event(entity_id: str, event: str | Event, context: dict[str, Any] | None = None) -> TransitionResult
Run the sandwich loop synchronously.
Source code in src/pystator/orchestrator.py
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 | |
async_process_event
async
¶
async_process_event(entity_id: str, event: str | Event, context: dict[str, Any] | None = None) -> TransitionResult
Run the sandwich loop asynchronously.
Source code in src/pystator/orchestrator.py
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 | |
apply_data
¶
Update entity context and evaluate when-route transitions (sync).
Loads the current state and context from the store, merges data, evaluates the post-transition chain (auto + when-routes), persists any resulting state changes, and returns the list of fired results.
Requires classification.auto_route: true in the machine meta.
Source code in src/pystator/orchestrator.py
async_apply_data
async
¶
Async version of :meth:apply_data.
Source code in src/pystator/orchestrator.py
replay
¶
Replay an entity from the event store, returning results at each step.
Creates a fresh in-memory EntitySession at the machine's initial state, then replays each persisted event in sequence order.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The entity to replay. |
required |
up_to_sequence
|
int | None
|
Stop after this sequence number (inclusive). If
|
None
|
Returns:
| Type | Description |
|---|---|
list[TransitionResult]
|
List of |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If no event store is configured. |