summaryrefslogtreecommitdiff
path: root/examples/statemachine/documentSignoffDemo.py
blob: 23c902dddcaeb78e28240baa2b87e2dca87d5685 (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
#
# 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

print(
    "\n".join(
        t.__name__ for t in documentsignoffstate.DocumentRevisionState.transitions()
    )
)


class Document(documentsignoffstate.DocumentRevisionStateMixin):
    def __init__(self):
        self.initialize_state(documentsignoffstate.New)


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()