-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfsm.go
311 lines (277 loc) · 10.3 KB
/
fsm.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
154
155
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*
Copyright 2024 Robert Terhaar <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Package fsm provides a thread-safe finite state machine implementation.
// It allows defining custom states and transitions, managing state changes,
// subscribing to state updates via channels, and persisting/restoring state via JSON.
//
// Example usage:
//
// logger := slog.Default()
// machine, err := fsm.New(logger.Handler(), fsm.StatusNew, fsm.TypicalTransitions)
// if err != nil {
// logger.Error("Failed to create FSM", "error", err)
// return
// }
//
// err = machine.Transition(fsm.StatusRunning)
// if err != nil {
// logger.Error("Transition failed", "error", err)
// }
//
// // Persist state
// jsonData, err := json.Marshal(machine)
//
// if err != nil {
// logger.Error("Failed to marshal FSM state", "error", err)
// }
//
// // Restore state
// restoredMachine, err := fsm.NewFromJSON(logger.Handler(), jsonData, fsm.TypicalTransitions)
//
// if err != nil {
// logger.Error("Failed to restore FSM from JSON", "error", err)
// } else {
//
// logger.Info("Restored FSM state", "state", restoredMachine.GetState())
// }
package fsm
import (
"encoding/json"
"fmt"
"log/slog"
"sync"
"sync/atomic"
)
// Machine represents a finite state machine that tracks its current state
// and manages state transitions.
type Machine struct {
// mutex protects the 'state' field during transitions and SetState.
// RLock is used for GetState if not using atomic.Value.
mutex sync.RWMutex
// state stores the current state. Using atomic.Value allows lock-free reads via GetState.
// If simplified, replace with `state string` and use mutex.RLock in GetState.
state atomic.Value
// transitionIndex provides fast lookups for allowed transitions.
transitionIndex transitionIndex
// subscriberMutex protects access to the subscribers map.
// A separate mutex ensures broadcast notifications are sent serially.
subscriberMutex sync.Mutex
// subscribers holds channels that receive state change notifications.
// Using sync.Map for concurrent-safe add/remove/range operations.
subscribers sync.Map // map[chan string]struct{}
// logHandler is the underlying structured logging handler.
logHandler slog.Handler
// logger is the FSM's specific logger instance.
logger *slog.Logger
}
// persistentState is used for JSON marshaling/unmarshaling.
// It only stores the essential state information.
type persistentState struct {
State string `json:"state"`
}
// New initializes a new finite state machine with the specified initial state and
// allowed state transitions.
//
// Example of allowedTransitions:
//
// allowedTransitions := TransitionsConfig{
// StatusNew: {StatusBooting, StatusError},
// StatusBooting: {StatusRunning, StatusError},
// StatusRunning: {StatusReloading, StatusExited, StatusError},
// StatusReloading: {StatusRunning, StatusError},
// StatusError: {StatusNew, StatusExited},
// StatusExited: {StatusNew},
// }
func New(
handler slog.Handler,
initialState string,
allowedTransitions TransitionsConfig,
) (*Machine, error) {
// Ensure a valid logger handler is provided or use a default.
if handler == nil {
handler = slog.Default().
Handler().
WithGroup("fsm")
// Fallback to the default slog handler if nil.
}
// Validate that transitions are defined.
if len(allowedTransitions) == 0 {
return nil, fmt.Errorf("%w: allowedTransitions is empty or nil", ErrAvailableStateData)
}
// Build the transition index for efficient lookups.
idx := makeIndex(allowedTransitions)
// Validate that the initial state is actually defined in the transitions.
if _, ok := idx[initialState]; !ok {
return nil, fmt.Errorf(
"%w: initial state '%s' is not defined in allowedTransitions",
ErrInvalidState,
initialState,
)
}
// Create the machine instance.
m := &Machine{
transitionIndex: idx,
logHandler: handler,
logger: slog.New(handler),
}
// Atomically store the initial state.
m.state.Store(initialState)
return m, nil
}
// NewFromJSON creates a new finite state machine by unmarshaling JSON data.
// It requires the logging handler and the original transitions configuration
// used when the state was marshaled.
func NewFromJSON(
handler slog.Handler,
jsonData []byte,
allowedTransitions TransitionsConfig,
) (*Machine, error) {
// Unmarshal the JSON data into the temporary persistence struct.
var pState persistentState
if err := json.Unmarshal(jsonData, &pState); err != nil {
return nil, fmt.Errorf("failed to unmarshal FSM JSON data: %w", err)
}
// Validate the unmarshaled state. Use the first state in transitions as a fallback?
// For now, let's require the state to be valid according to the provided transitions.
// We use New which performs this validation internally.
// Note: New validates if the state exists as a *source* state in the transitions.
// If a state can only be a target state, New might fail.
// Consider validating against all known states derived from allowedTransitions instead.
// Create a new FSM instance. New will validate the state against the transitions.
// We use the unmarshaled state as the initial state.
machine, err := New(handler, pState.State, allowedTransitions)
if err != nil {
// Wrap the error from New to provide context about JSON restoration failure.
return nil, fmt.Errorf(
"failed to initialize FSM with restored state '%s': %w",
pState.State,
err,
)
}
// The machine is already initialized with the correct state by New.
machine.logger.Debug("Successfully restored FSM state from JSON", "state", pState.State)
return machine, nil
}
// MarshalJSON implements the json.Marshaler interface.
// It returns the current state of the FSM as a JSON object: {"state": "CURRENT_STATE"}.
func (fsm *Machine) MarshalJSON() ([]byte, error) {
// Get the current state safely.
currentState := fsm.GetState()
// Create the struct for marshaling.
pState := persistentState{
State: currentState,
}
// Marshal the persistence struct into JSON bytes.
jsonData, err := json.Marshal(pState)
if err != nil {
// This should never happen
return nil, fmt.Errorf("failed to marshal FSM state: %w", err)
}
return jsonData, nil
}
// GetState returns the current state of the finite state machine.
// This read is lock-free due to the use of atomic.Value.
func (fsm *Machine) GetState() string {
return fsm.state.Load().(string)
}
// setState updates the FSM's state and notifies all subscribers about the state change.
// It assumes that the caller has already acquired the necessary write lock (fsm.mutex).
func (fsm *Machine) setState(state string) {
fsm.state.Store(state)
fsm.broadcast(state)
}
// SetState updates the FSM's state to the provided state, bypassing the usual transition rules.
// It only succeeds if the requested state is defined as a valid *source* state
// in the allowedTransitions configuration.
func (fsm *Machine) SetState(state string) error {
fsm.mutex.Lock()
defer fsm.mutex.Unlock()
// Check if the target state is a known source state in our transition index.
// This ensures the state is valid according to the machine's configuration.
if _, ok := fsm.transitionIndex[state]; !ok {
fsm.logger.Error("SetState failed: target state not defined", "state", state)
return fmt.Errorf(
"%w: state '%s' is not defined as a source state in transitions",
ErrInvalidState,
state,
)
}
fsm.logger.Debug("Setting state directly", "from", fsm.GetState(), "to", state)
fsm.setState(state)
return nil
}
// transition attempts to change the FSM's state from the current state to toState.
// It returns an error if the transition is invalid according to the configured rules.
// Assumes the caller holds the write lock (fsm.mutex).
func (fsm *Machine) transition(toState string) error {
currentState := fsm.GetState()
allowedTransitions, ok := fsm.transitionIndex[currentState]
if !ok {
return fmt.Errorf(
"%w: current state '%s' has no defined transitions",
ErrInvalidState,
currentState,
)
}
// Check if the target state is allowed from the current state.
if _, exists := allowedTransitions[toState]; exists {
// Perform the state change.
fsm.setState(toState)
fsm.logger.Debug("Transition successful", "from", currentState, "to", toState)
return nil // Success
}
return fmt.Errorf(
"%w: transition from '%s' to '%s' is not allowed",
ErrInvalidStateTransition,
currentState,
toState,
)
}
// Transition changes the FSM's state to toState. It ensures that the transition adheres to the
// allowed transitions defined during initialization. Returns ErrInvalidState if the current state
// is somehow invalid or ErrInvalidStateTransition if the transition is not allowed.
func (fsm *Machine) Transition(toState string) error {
fsm.mutex.Lock()
defer fsm.mutex.Unlock()
return fsm.transition(toState)
}
// TransitionBool is similar to Transition, but returns a boolean indicating whether the transition
// was successful. It suppresses the specific error reason.
func (fsm *Machine) TransitionBool(toState string) bool {
fsm.mutex.Lock()
defer fsm.mutex.Unlock()
return fsm.transition(toState) == nil
}
// TransitionIfCurrentState changes the FSM's state to toState only if the current state matches
// fromState. This returns an error if the current state does not match or if the transition is
// not allowed from fromState to toState.
func (fsm *Machine) TransitionIfCurrentState(fromState, toState string) error {
fsm.mutex.Lock()
defer fsm.mutex.Unlock()
currentState := fsm.GetState()
if currentState != fromState {
fsm.logger.Debug(
"Conditional transition skipped: current state mismatch",
"current", currentState,
"expected", fromState,
"target", toState)
return fmt.Errorf(
"%w: current state is '%s', expected '%s' for transition to '%s'",
ErrCurrentStateIncorrect,
currentState,
fromState,
toState,
)
}
return fsm.transition(toState)
}