1
1
import random
2
2
import time
3
- from typing import List , Optional
3
+ from typing import Tuple
4
4
5
5
import cowsay
6
6
7
7
from burr .core import Action , Application , ApplicationBuilder , State , default , expr
8
+ from burr .core .action import action
8
9
from burr .lifecycle import PostRunStepHook
9
10
10
11
11
- class CowSay (Action ):
12
- def __init__ (self , say_what : List [Optional [str ]]):
13
- super (CowSay , self ).__init__ ()
14
- self .say_what = say_what
15
-
16
- @property
17
- def reads (self ) -> list [str ]:
18
- return []
19
-
20
- def run (self , state : State ) -> dict :
21
- say_what = random .choice (self .say_what )
22
- return {
23
- "cow_said" : cowsay .get_output_string ("cow" , say_what ) if say_what is not None else None
24
- }
25
-
26
- @property
27
- def writes (self ) -> list [str ]:
28
- return ["cow_said" ]
29
-
30
- def update (self , result : dict , state : State ) -> State :
31
- return state .update (** result )
32
-
33
-
34
- class CowShouldSay (Action ):
35
- @property
36
- def reads (self ) -> list [str ]:
37
- return []
38
-
39
- def run (self , state : State ) -> dict :
40
- if not random .randint (0 , 3 ):
41
- return {"cow_should_speak" : True }
42
- return {"cow_should_speak" : False }
43
-
44
- @property
45
- def writes (self ) -> list [str ]:
46
- return ["cow_should_speak" ]
47
-
48
- def update (self , result : dict , state : State ) -> State :
49
- return state .update (** result )
50
-
51
-
52
12
class PrintWhatTheCowSaid (PostRunStepHook ):
53
13
def post_run_step (self , * , state : "State" , action : "Action" , ** future_kwargs ):
54
14
if action .name != "cow_should_say" and state ["cow_said" ] is not None :
@@ -65,6 +25,19 @@ def post_run_step(self, *, state: "State", action: "Action", **future_kwargs):
65
25
time .sleep (self .sleep_time )
66
26
67
27
28
+ @action (reads = [], writes = ["cow_said" ])
29
+ def cow_said (state : State , say_what : list [str ]) -> Tuple [dict , State ]:
30
+ said = random .choice (say_what )
31
+ result = {"cow_said" : cowsay .get_output_string ("cow" , said ) if say_what is not None else None }
32
+ return result , state .update (** result )
33
+
34
+
35
+ @action (reads = [], writes = ["cow_should_speak" ])
36
+ def cow_should_speak (state : State ) -> Tuple [dict , State ]:
37
+ result = {"cow_should_speak" : random .randint (0 , 3 ) == 0 }
38
+ return result , state .update (** result )
39
+
40
+
68
41
def application (in_terminal : bool = False ) -> Application :
69
42
hooks = (
70
43
[
@@ -76,21 +49,21 @@ def application(in_terminal: bool = False) -> Application:
76
49
)
77
50
return (
78
51
ApplicationBuilder ()
79
- .with_state (
80
- cow_said = None ,
81
- )
52
+ .with_state (cow_said = None )
82
53
.with_actions (
83
- say_nothing = CowSay ([None ]),
84
- say_hello = CowSay (["Hello world!" , "What's up?" , "Are you Aaron Burr, sir?" ]),
85
- cow_should_say = CowShouldSay (),
54
+ say_nothing = cow_said .bind (say_what = None ),
55
+ say_hello = cow_said .bind (
56
+ say_what = ["Hello world!" , "What's up?" , "Are you Aaron Burr, sir?" ]
57
+ ),
58
+ cow_should_speak = cow_should_speak ,
86
59
)
87
60
.with_transitions (
88
- ("cow_should_say " , "say_hello" , expr ("cow_should_speak" )),
89
- ("say_hello" , "cow_should_say " , default ),
90
- ("cow_should_say " , "say_nothing" , expr ("not cow_should_speak" )),
91
- ("say_nothing" , "cow_should_say " , default ),
61
+ ("cow_should_speak " , "say_hello" , expr ("cow_should_speak" )),
62
+ ("say_hello" , "cow_should_speak " , default ),
63
+ ("cow_should_speak " , "say_nothing" , expr ("not cow_should_speak" )),
64
+ ("say_nothing" , "cow_should_speak " , default ),
92
65
)
93
- .with_entrypoint ("cow_should_say " )
66
+ .with_entrypoint ("cow_should_speak " )
94
67
.with_hooks (* hooks )
95
68
.build ()
96
69
)
@@ -100,4 +73,4 @@ def application(in_terminal: bool = False) -> Application:
100
73
app = application (in_terminal = True )
101
74
app .visualize (output_file_path = "cowsay.png" , include_conditions = True , view = True )
102
75
while True :
103
- state , result , action = app .step ()
76
+ s , r , action = app .step ()
0 commit comments