blob: 9cf12bc5cd5106ff8c16dfc6793ef49d51aa4db8 (
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
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
176
177
178
179
180
181
182
|
(.module:
[lux #*
[ffi (#+ import:)]
["@" target]
[abstract
[monad (#+ do)]]
[control
["." try (#+ Try)]
["." exception (#+ exception:)]
["." io (#+ IO io)]
[concurrency
["." promise (#+ Promise)]
["." atom]]
[security
["!" capability (#+ capability:)]]]
[data
["." text (#+ Char)
["%" format (#+ format)]]]])
(template [<name>]
[(exception: #export (<name>)
"")]
[cannot_open]
[cannot_close]
)
(capability: #export (Can_Read ! o)
(can_read [] (! (Try o))))
(capability: #export (Can_Write ! i)
(can_write i (! (Try Any))))
(capability: #export (Can_Close !)
(can_close [] (! (Try Any))))
(signature: #export (Console !)
(: (Can_Read ! Char)
read)
(: (Can_Read ! Text)
read_line)
(: (Can_Write ! Text)
write)
(: (Can_Close !)
close))
(def: #export (async console)
(-> (Console IO) (Console Promise))
(`` (structure (~~ (template [<capability> <forge>]
[(def: <capability>
(<forge>
(|>> (!.use (\ console <capability>)) promise.future)))]
[read ..can_read]
[read_line ..can_read]
[write ..can_write]
[close ..can_close])))))
(with_expansions [<jvm> (as_is (import: java/lang/String)
(import: java/io/Console
["#::."
(readLine [] #io #try java/lang/String)])
(import: java/io/InputStream
["#::."
(read [] #io #try int)])
(import: java/io/PrintStream
["#::."
(print [java/lang/String] #io #try void)])
(import: java/lang/System
["#::."
(#static console [] #io #? java/io/Console)
(#static in java/io/InputStream)
(#static out java/io/PrintStream)])
(def: #export default
(IO (Try (Console IO)))
(do io.monad
[?jvm_console (java/lang/System::console)]
(case ?jvm_console
#.None
(wrap (exception.throw ..cannot_open []))
(#.Some jvm_console)
(let [jvm_input (java/lang/System::in)
jvm_output (java/lang/System::out)]
(<| wrap
exception.return
(: (Console IO)) ## TODO: Remove ASAP
(structure
(def: read
(..can_read
(function (_ _)
(|> jvm_input
java/io/InputStream::read
(\ (try.with io.monad) map .nat)))))
(def: read_line
(..can_read
(function (_ _)
(java/io/Console::readLine jvm_console))))
(def: write
(..can_write
(function (_ message)
(java/io/PrintStream::print message jvm_output))))
(def: close
(..can_close
(|>> (exception.throw ..cannot_close) wrap))))))))))]
(for {@.old (as_is <jvm>)
@.jvm (as_is <jvm>)}
(as_is)))
(def: #export (write_line message console)
(All [!] (-> Text (Console !) (! (Try Any))))
(!.use (\ console write) [(format message text.new_line)]))
(signature: #export (Simulation s)
(: (-> s (Try [s Char]))
on_read)
(: (-> s (Try [s Text]))
on_read_line)
(: (-> Text s (Try s))
on_write)
(: (-> s (Try s))
on_close))
(def: #export (mock simulation init)
(All [s] (-> (Simulation s) s (Console IO)))
(let [state (atom.atom init)]
(`` (structure
(~~ (template [<method> <simulation>]
[(def: <method>
(..can_read
(function (_ _)
(do {! io.monad}
[|state| (atom.read state)]
(case (\ simulation <simulation> |state|)
(#try.Success [|state| output])
(do !
[_ (atom.write |state| state)]
(wrap (#try.Success output)))
(#try.Failure error)
(wrap (#try.Failure error)))))))]
[read on_read]
[read_line on_read_line]
))
(def: write
(..can_write
(function (_ input)
(do {! io.monad}
[|state| (atom.read state)]
(case (\ simulation on_write input |state|)
(#try.Success |state|)
(do !
[_ (atom.write |state| state)]
(wrap (#try.Success [])))
(#try.Failure error)
(wrap (#try.Failure error)))))))
(def: close
(..can_close
(function (_ _)
(do {! io.monad}
[|state| (atom.read state)]
(case (\ simulation on_close |state|)
(#try.Success |state|)
(do !
[_ (atom.write |state| state)]
(wrap (#try.Success [])))
(#try.Failure error)
(wrap (#try.Failure error)))))))
))))
|