-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
146 lines (122 loc) · 3.57 KB
/
main.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
/*
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 main
import (
"context"
"log/slog"
"os"
"time"
"github.com/robbyt/go-fsm"
)
// Define custom states
const (
StatusOnline = "StatusOnline"
StatusOffline = "StatusOffline"
StatusUnknown = "StatusUnknown"
)
// newLogger creates a new logger with time attribute omitted
func newLogger() *slog.Logger {
handler := slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{
Level: slog.LevelDebug,
ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr {
if a.Key == slog.TimeKey {
return slog.Attr{} // Omit the time attribute
}
return a
},
})
return slog.New(handler).WithGroup("example")
}
// getTransitionsConfig returns the allowed state transition configuration
func getTransitionsConfig() fsm.TransitionsConfig {
return fsm.TransitionsConfig{
StatusOnline: []string{StatusOffline, StatusUnknown},
StatusOffline: []string{StatusOnline, StatusUnknown},
StatusUnknown: []string{},
}
}
// newStateMachine creates a new FSM with the given logger and initial state
func newStateMachine(logger *slog.Logger, initialState string) (*fsm.Machine, error) {
return fsm.New(logger.Handler(), initialState, getTransitionsConfig())
}
// listenForStateChanges starts a goroutine that listens for state changes
// Returns a channel that will be closed when the listener exits
func listenForStateChanges(
ctx context.Context,
logger *slog.Logger,
machine *fsm.Machine,
) chan struct{} {
done := make(chan struct{})
listener := machine.GetStateChan(ctx)
go func() {
defer close(done)
for {
select {
case state, ok := <-listener:
if !ok {
logger.Debug("State channel closed")
return
}
logger.Info("State change received", "state", state)
case <-ctx.Done():
logger.Debug("Context done, exiting listener")
return
}
}
}()
return done
}
// waitForOfflineState waits for the machine to transition to StatusOffline and then cancels the context
func waitForOfflineState(
ctx context.Context,
cancel context.CancelFunc,
logger *slog.Logger,
machine *fsm.Machine,
) {
stateChan := machine.GetStateChan(ctx)
go func() {
for state := range stateChan {
if state == StatusOffline {
logger.Info("Received offline state, canceling context...")
cancel()
return
}
}
}()
}
func main() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
logger := newLogger()
// Create a new FSM
machine, err := newStateMachine(logger, StatusOnline)
if err != nil {
logger.Error(err.Error())
os.Exit(1)
}
// Listen and log all state changes
done := listenForStateChanges(ctx, logger, machine)
// Set up a 2nd listener specifically for acting on the offline state
waitForOfflineState(ctx, cancel, logger, machine)
// Transition to StatusOffline after a small delay
time.Sleep(100 * time.Millisecond)
logger.Debug("Transitioning to offline state")
err = machine.Transition(StatusOffline)
if err != nil {
logger.Error(err.Error())
os.Exit(1)
}
// Wait for the done signal from the listner goroutine
<-done
logger.Info("Done.")
}