statemachine.go ×6

Frontier kind: Code frontier

unlabeled · c_c362884bc2c2

5 tests · 2526 LOC · 129 files · introduces 0 tests · 12 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
6 ranges12 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
378 ranges2526 lines · 129 files · Browse complete extent
All tests (intent)
5 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 12 introduced LOC across 6 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/components/nexusoperations/statemachine.go 12 introduced LOC · 6 ranges

Open complete file

495 // processing a replication task.
496 // TODO: Remove this implementation once transition history is fully implemented.
497 > func (cancelationMachineDefinition) CompareState(state1, state2 any) (int, error) { statemachine.go
498 > c1, ok := state1.(Cancelation)
499 > if !ok {
500 return 0, fmt.Errorf("%w: expected state1 to be a Cancelation instance, got %v", hsm.ErrIncompatibleType, state1)
501 }
502 > c2, ok := state2.(Cancelation) statemachine.go
503 > if !ok {
504 return 0, fmt.Errorf("%w: expected state2 to be a Cancelation instance, got %v", hsm.ErrIncompatibleType, state2)
505 }
506
507 > stage1, attempts1, err := c1.progress() statemachine.go
508 > if err != nil {
509 return 0, fmt.Errorf("failed to get progress for state1: %w", err)
510 }
511 > stage2, attempts2, err := c2.progress() statemachine.go
512 > if err != nil {
513 return 0, fmt.Errorf("failed to get progress for state2: %w", err)
514 }
515 > if stage1 != stage2 { statemachine.go
516 return stage1 - stage2, nil
517 }
565
566 // TODO: Remove this implementation once transition history is fully implemented.
567 > func (c Cancelation) progress() (int, int32, error) { statemachine.go
568 > switch c.State() {
569 case enumspb.NEXUS_OPERATION_CANCELLATION_STATE_UNSPECIFIED:
570 // UNSPECIFIED is a valid state since the cancelation may not initially get scheduled if the operation hasn't