-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnon_transactional_route.go
175 lines (141 loc) · 3.95 KB
/
non_transactional_route.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
package orchestrator
import "fmt"
type (
NonTransactionalRoute struct {
// route id
id string
// startState graph root state
startState *State
// route state
routeState routeState
// latest added state
lastState *State
// predicateStateStack keep conditional state for Otherwise/End-condition transition
predicateStateStack predicateStateStack
// endpoint list
endpoints []*Endpoint
}
// force to present AddNextStep method only
onlyNonTRAddNextStep interface {
AddNextStep(name string, doAction func(ctx *context) error) *NonTransactionalRoute
}
)
// NewNonTransactionalRoute define and return a NonTransactionalRoute
func NewNonTransactionalRoute(id string) *NonTransactionalRoute {
return &NonTransactionalRoute{
id: id,
routeState: Main,
}
}
// AddNextStep add new step to NonTransactionalRoute
func (ntr *NonTransactionalRoute) AddNextStep(name string, doAction func(ctx *context) error) *NonTransactionalRoute {
s := &State{
name: fmt.Sprintf("%s_%s", ntr.id, name),
action: doAction,
}
switch ntr.routeState {
case When:
ntr.addNextStepAfterWhen(s)
break
case Else:
ntr.addNextStepAfterOtherwise(s)
break
case End:
ntr.addNextStepAfterEnd(s)
break
default:
// first state must be define as a start start (root)
if ntr.startState == nil {
ntr.startState = s
break
}
ntr.lastState.createTransition(s, Default, func(ctx context) bool {
return true
})
}
// update last State
ntr.lastState = s
ntr.routeState = Main
return ntr
}
func (ntr *NonTransactionalRoute) addNextStepAfterWhen(s *State) {
ntr.lastState.createTransition(s, Condition, ntr.predicateStateStack.getLast().predicate)
}
func (ntr *NonTransactionalRoute) addNextStepAfterOtherwise(s *State) {
ps := ntr.predicateStateStack.getLast()
ps.state.createTransition(s, Condition, func(ctx context) bool {
return !ps.predicate(ctx)
})
}
// condition condition
// / \ | \
// not yes no yes
// included | | |
// \ / | /
// End State End State
func (ntr *NonTransactionalRoute) addNextStepAfterEnd(s *State) {
cs := ntr.predicateStateStack.pop().state
predicate := func(ctx context) bool {
return true
}
// define Transition from last State of each condition State
states := ntr.getEachTransitionLatestState(cs)
for _, es := range states {
es.createTransition(s, Default, predicate)
}
// Otherwise doesn't define
if len(states) < 2 {
// define a Transition from latest state with a conditional transition
cs.createTransition(s, Default, predicate)
}
}
// When to define a condition
func (ntr *NonTransactionalRoute) When(predicate func(ctx context) bool) onlyNonTRAddNextStep {
ntr.routeState = When
ntr.predicateStateStack.push(predicate, ntr.lastState)
return ntr
}
// Otherwise When condition
func (ntr *NonTransactionalRoute) Otherwise() onlyNonTRAddNextStep {
ntr.routeState = Else
return ntr
}
// End of condition
func (ntr *NonTransactionalRoute) End() onlyNonTRAddNextStep {
ntr.routeState = End
return ntr
}
func (ntr *NonTransactionalRoute) To(id string) *NonTransactionalRoute {
ntr.endpoints = append(ntr.endpoints, &Endpoint{
To: id,
State: ntr.lastState,
})
return ntr
}
func (ntr *NonTransactionalRoute) GetRouteId() string {
return ntr.id
}
func (ntr *NonTransactionalRoute) GetStartState() *State {
return ntr.startState
}
func (ntr *NonTransactionalRoute) GetEndpoints() []*Endpoint {
return ntr.endpoints
}
func (ntr *NonTransactionalRoute) getEachTransitionLatestState(state *State) []*State {
var result []*State
for _, t := range state.transitions {
if t.priority == Condition {
result = append(result, ntr.getLatestState(t.to))
}
}
return result
}
// looking for latest state
func (ntr *NonTransactionalRoute) getLatestState(state *State) *State {
for _, st := range state.transitions {
if st.priority == Default {
return ntr.getLatestState(st.to)
}
}
return state
}