mutable_state_impl.go ×7

Frontier kind: Code frontier

unlabeled · c_7ad08264f98f

8 tests · 9357 LOC · 257 files · introduces 0 tests · 22 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
7 ranges22 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
2000 ranges9357 lines · 257 files · Browse complete extent
All tests (intent)
8 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: 22 introduced LOC across 7 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/service/history/workflow/mutable_state_impl.go 22 introduced LOC · 7 ranges

Open complete file

4773 details *commonpb.Payloads,
4774 identity string,
4775 > ) (*historypb.HistoryEvent, error) { mutable_state_impl.go
4776 > opTag := tag.WorkflowActionActivityTaskCanceled
4777 > if err := ms.checkMutability(opTag); err != nil {
4778 return nil, err
4779 }
4780
4781 > ai, ok := ms.GetActivityInfo(scheduledEventID) mutable_state_impl.go
4782 > if !ok || ai.StartedEventId != startedEventID {
4783 ms.logWarn(mutableStateInvalidHistoryActionMsg, opTag,
4784 tag.WorkflowEventID(ms.GetNextEventID()),
4789
4790 // Verify cancel request as well.
4791 > if !ai.CancelRequested { mutable_state_impl.go
4792 ms.logWarn(mutableStateInvalidHistoryActionMsg, opTag,
4793 tag.WorkflowEventID(ms.GetNextEventID()),
4799 }
4800
4801 > if err := ms.addStartedEventForTransientActivity(scheduledEventID, nil); err != nil { mutable_state_impl.go
4802 return nil, err
4803 }
4804 > event := ms.hBuilder.AddActivityTaskCanceledEvent( mutable_state_impl.go
4805 > scheduledEventID,
4806 > startedEventID,
4807 > latestCancelRequestedEventID,
4808 > details,
4809 > identity,
4810 > )
4811 > if err := ms.ApplyActivityTaskCanceledEvent(event); err != nil {
4812 return nil, err
4813 }
4814
4815 > return event, nil mutable_state_impl.go
4816 }
4817
4818 func (ms *MutableStateImpl) ApplyActivityTaskCanceledEvent(
4819 event *historypb.HistoryEvent,
4820 > ) error { mutable_state_impl.go
4821 > attributes := event.GetActivityTaskCanceledEventAttributes()
4822 > scheduledEventID := attributes.GetScheduledEventId()
4823 >
4824 > return ms.DeleteActivity(scheduledEventID)
4825 > }
4826
4827 func (ms *MutableStateImpl) AddCompletedWorkflowEvent(