-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.elm
285 lines (228 loc) · 7.53 KB
/
Main.elm
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
module Main exposing (..)
import SECD exposing (SECD)
import SECD.Examples
import SECD.Printer
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Html.App
import Json.Decode as Json
import Dict exposing (Dict)
import Time
main =
Html.App.program
{ init = initDefault
, update = update
, subscriptions = subscriptions
, view = view
}
-- MODEL
type alias Model =
{ machine : SECD.Machine
, initMachine : SECD.Machine
, history : List SECD.Machine
, error : Maybe String
, selectedMachineName : String
, isPlaying : Bool
}
exampleMachines : List ( String, SECD.Machine )
exampleMachines =
[ ( "HelloWorld", SECD.Examples.helloWorld )
, ( "HelloWorld identity", SECD.Examples.helloWorldIdentity )
, ( "Church booleans: True", SECD.Examples.showChurchTrue )
, ( "Church booleans: False", SECD.Examples.showChurchFalse )
, ( "Church numerals: (0 == 0)?", SECD.Examples.zeroIsZero )
, ( "Church numerals: ((1 - 1) == 0)?", SECD.Examples.oneMinusOneIsZero )
, ( "Church numerals: ((2 - 1) == 0)?", SECD.Examples.twoMinusOneIsNotZero )
, ( "Integer arithmetic: 1 + 2", SECD.Examples.onePlusTwo )
, ( "Integer arithmetic: (11 - 2) + 5", SECD.Examples.plusAndMinus )
]
exampleMachinesDict : Dict String SECD.Machine
exampleMachinesDict =
Dict.fromList exampleMachines
init : ( String, SECD.Machine ) -> ( Model, Cmd Msg )
init ( machineName, machine ) =
( { machine = machine
, initMachine = machine
, history = []
, error = Nothing
, selectedMachineName = machineName
, isPlaying = False
}
, Cmd.none
)
defaultNamedMachine : ( String, SECD.Machine )
defaultNamedMachine =
( "HelloWorld", SECD.Examples.helloWorld )
initDefault : ( Model, Cmd Msg )
initDefault =
init defaultNamedMachine
-- UPDATE
type Msg
= StepForward
| StepBack
| PlayPause
| ResetMachine String
update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case msg of
StepForward ->
case SECD.transform model.machine of
Ok machine ->
let
model =
if SECD.isDone machine && model.isPlaying then
{ model | isPlaying = False }
else
model
in
( { model
| machine = machine
, history = model.machine :: model.history
, error = Nothing
}
, Cmd.none
)
Err errorMessage ->
( { model | error = Just errorMessage }
, Cmd.none
)
StepBack ->
case model.history of
[] ->
( { model | error = Just "can't go back any further!" }, Cmd.none )
previousMachine :: restOfHistory ->
( { model
| machine = previousMachine
, history = restOfHistory
, error = Nothing
}
, Cmd.none
)
PlayPause ->
( { model | isPlaying = not model.isPlaying }, Cmd.none )
ResetMachine machineName ->
case Dict.get machineName exampleMachinesDict of
Nothing ->
initDefault
Just machine ->
init ( machineName, machine )
-- SUBSCRIPTIONS
subscriptions : Model -> Sub Msg
subscriptions model =
if model.isPlaying then
Time.every (400 * Time.millisecond) (always StepForward)
else
Sub.none
-- VIEW
view : Model -> Html Msg
view model =
div [ style [ ( "padding", "20px" ) ] ]
[ headerView
, machineSelectorView model
, machineInfoView model
, controlsView model
, machineStateView model.machine.state
]
headerView : Html Msg
headerView =
div []
[ h1 [] [ text "elm-secd" ]
, p [] [ a [ href "https://github.com/jamesmacaulay/elm-secd" ] [ text "source on github" ] ]
, p []
[ text "This is an "
, a [ href "http://elm-lang.org/" ]
[ text "Elm" ]
, text " implementation of Peter Landin's "
, a [ href "https://en.wikipedia.org/wiki/SECD_machine" ]
[ text "SECD machine" ]
, text ", as described his 1964 paper "
, a [ href "https://www.cs.cmu.edu/afs/cs/user/crary/www/819-f09/Landin64.pdf" ]
[ text "The Mechanical Evaluation of Expressions" ]
, text "."
]
]
machineSelectorView : Model -> Html Msg
machineSelectorView model =
div []
[ text "Load example machine: "
, select [ on "change" (Json.map ResetMachine targetValue) ]
(exampleMachines
|> List.map
(\( name, _ ) ->
option [ selected (name == model.selectedMachineName) ] [ text name ]
)
)
]
machineInfoView : Model -> Html Msg
machineInfoView model =
div []
[ div []
(case model.initMachine.state of
( _, _, (SECD.AE expression) :: _, _ ) ->
[ text ("Initial expression: " ++ SECD.Printer.expressionToString expression) ]
_ ->
[]
)
, div []
(if Dict.isEmpty model.initMachine.basicFunctions then
[]
else
[ text ("Built-in basic functions available: " ++ toString (Dict.keys model.initMachine.basicFunctions)) ]
)
]
controlsView : Model -> Html Msg
controlsView model =
div [ style [ ( "margin-top", "20px" ) ] ]
[ button [ onClick StepBack, disabled (List.isEmpty model.history) ] [ text "StepBack" ]
, button [ onClick PlayPause ]
[ text
(if model.isPlaying then
"Pause"
else
"Play"
)
]
, button [ onClick StepForward, disabled (SECD.isDone model.machine) ] [ text "StepForward" ]
, span [] [ text " " ]
, doneView model.machine
, errorView model.error
]
doneView : SECD.Machine -> Html Msg
doneView machine =
span [ style [ ( "color", "green" ) ] ]
[ if SECD.isDone machine then
text "done!"
else
text ""
]
errorView : Maybe String -> Html Msg
errorView maybeError =
span [ style [ ( "color", "red" ) ] ]
[ maybeError |> Maybe.withDefault "" |> text ]
machineStateView : SECD.SECD -> Html Msg
machineStateView ( stack, env, control, dump ) =
let
toText =
toString >> text
toListItems =
List.map (\x -> li [] [ toText x ])
in
div []
[ div []
[ h4 [] [ text "stack" ]
, ul [] (toListItems stack)
]
, div []
[ h4 [] [ text "environment" ]
, ul [] (toListItems env)
]
, div []
[ h4 [] [ text "control" ]
, ul [] (toListItems control)
]
, div []
[ h4 [] [ text "dump" ]
, div [] [ toText dump ]
]
]