blob: 89c6440f3e42e54f9c3337a3294378a320e9c366 (
plain)
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
|
#
# documentSignoffDemo.py
#
# Example of a state machine modeling the state of a document in a document
# control system, using named state transitions
#
import statemachine
import documentsignoffstate
class Document:
def __init__(self):
# start light in Red state
self._state = documentsignoffstate.New()
@property
def state(self):
return self._state
# get behavior/properties from current state
def __getattr__(self, attrname):
attr = getattr(self._state, attrname)
if isinstance(getattr(documentsignoffstate, attrname, None),
documentsignoffstate.DocumentRevisionStateTransition):
return lambda : setattr(self, '_state', attr())
return attr
def __str__(self):
return "{}: {}".format(self.__class__.__name__, self._state)
def run_demo():
import random
doc = Document()
print(doc)
# begin editing document
doc.create()
print(doc)
print(doc.state.description)
while not isinstance(doc._state, documentsignoffstate.Approved):
print('...submit')
doc.submit()
print(doc)
print(doc.state.description)
if random.randint(1,10) > 3:
print('...reject')
doc.reject()
else:
print('...approve')
doc.approve()
print(doc)
print(doc.state.description)
doc.activate()
print(doc)
print(doc.state.description)
if __name__ == '__main__':
run_demo()
|