Files
temporal/chasm/statemachine.go
Stephan Behnke 1d9e864f78 CHASM OTEL events (#9968)
## What changed?

Improve OTEL for Chasm.

## Why?

Better observability.

## How did you test it?
- [ ] built
- [x] run locally and tested manually
- [ ] covered by existing tests
- [ ] added new unit test(s)
- [ ] added new functional test(s)

## Potential risks

Low; both changes are behind the "is OTEL enabled check".
2026-06-16 21:09:54 +00:00

80 lines
2.9 KiB
Go

package chasm
import (
"fmt"
"slices"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/trace"
"go.temporal.io/api/serviceerror"
"go.temporal.io/server/common/telemetry"
)
// ErrInvalidTransition is returned from [Transition.Apply] on an invalid state transition.
var ErrInvalidTransition = serviceerror.NewFailedPrecondition("invalid transition")
// A StateMachine is anything that can get and set a comparable state S and re-generate tasks based on current state.
// It is meant to be used with [Transition] objects to safely transition their state on a given event.
type StateMachine[S comparable] interface {
StateMachineState() S
SetStateMachineState(S)
}
// Transition represents a state machine transition for a machine of type SM with state S and event E.
type Transition[S comparable, SM StateMachine[S], E any] struct {
// Source states that are valid for this transition.
Sources []S
// Destination state to transition to.
Destination S
// Function to apply the transition. Mutate the state machine object here and schedule tasks.
apply func(SM, MutableContext, E) error
}
// NewTransition creates a new [Transition] from the given source states to a destination state for a given event.
// The apply function is called after verifying the transition is possible but before setting the destination state,
// so it can inspect the current (source) state.
func NewTransition[S comparable, SM StateMachine[S], E any](src []S, dst S, apply func(SM, MutableContext, E) error) Transition[S, SM, E] {
return Transition[S, SM, E]{
Sources: src,
Destination: dst,
apply: apply,
}
}
// Possible returns a boolean indicating whether the transition is possible for the current state.
func (t Transition[S, SM, E]) Possible(sm SM) bool {
return slices.Contains(t.Sources, sm.StateMachineState())
}
// Apply applies a transition event to the given state machine changing the state machine's state to the transition's
// Destination on success. The apply function is called before the state is changed, so it can inspect the current
// (source) state.
func (t Transition[S, SM, E]) Apply(sm SM, ctx MutableContext, event E) (retErr error) {
prevState := sm.StateMachineState()
// Defer to always emit the transition telemetry event.
if telemetry.DebugMode() {
defer func() {
attrs := []attribute.KeyValue{
attribute.String("chasm.transition.source", fmt.Sprintf("%v", prevState)),
attribute.String("chasm.transition.destination", fmt.Sprintf("%v", t.Destination)),
}
if retErr != nil {
attrs = append(attrs, attribute.String("chasm.transition.error", retErr.Error()))
}
span := trace.SpanFromContext(ctx.goContext())
span.AddEvent("chasm.transition", trace.WithAttributes(attrs...))
}()
}
if !t.Possible(sm) {
return fmt.Errorf("%w from %v", ErrInvalidTransition, prevState)
}
if err := t.apply(sm, ctx, event); err != nil {
return err
}
sm.SetStateMachineState(t.Destination)
return nil
}