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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
|
module TypedUI2HTML (
Rendering,UIParams,UISpec(UISpec),
WuiHandler(WHandler),
renderOf,errorOf,conditionOf,
withRendering,withError,withConditionIO,withCondition,
transformWSpec,adaptWSpec,
wInt,
wConstant,wHidden,
wStringStyles,wString,wStringSize,wRequiredString,wRequiredStringSize,
errorStyle,showError,renderError,
wPair,wTriple,w4Tuple,w5Tuple,w6Tuple,w7Tuple,w8Tuple,w11Tuple,
wCons2,wCons3,wCons4,wCons5,wCons6,wCons7,wCons8,wCons11,
wTextArea,wList,renderList,wMultiCheckSelect,newVars,
wSelect,wSelectInt,wSelectBool,renderTuple,tupleError,
typedui2ui,typeduistore2ui,runUISpec,
module UI2HTML,
wRadioSelect,wuiHandler2button,wuiInForm,wui2html,mainWUI,resultForm
) where
import Read(readNat)
import List(elemIndex)
import Maybe
import Char(isDigit,isSpace)
import FunctionInversion(invf1)
import ReadShowTerm
import qualified HTML
import UI2HTML
import IOExts
infixl 0 `withRendering`
infixl 0 `withError`
infixl 0 `withCondition`
infixl 0 `withConditionIO`
type Rendering = [UIWidget] -> UIWidget
type UIParams a = (Rendering, String, a -> IO Bool)
renderOf :: (a,_,_) -> a
renderOf (render,_,_) = render
errorOf :: (_,a,_) -> a
errorOf (_,err,_) = err
conditionOf :: (_,_,a) -> a
conditionOf (_,_,c) = c
data UISpec a =
UISpec (UIParams a)
(UIParams a -> a -> (UIWidget,
UIEnv -> IO (Maybe a),
a -> UIEnv -> IO ()))
withRendering :: UISpec a -> Rendering -> UISpec a
withRendering (UISpec (_,errmsg,legal) show) render =
UISpec (render,errmsg,legal) show
withError :: UISpec a -> String -> UISpec a
withError (UISpec (render,_,legal) show) errmsg =
UISpec (render,errmsg,legal) show
withConditionIO :: UISpec a -> (a -> IO Bool) -> UISpec a
withConditionIO (UISpec (render,errmsg,_) show) legal =
(UISpec (render,errmsg,legal) show)
withCondition :: UISpec a -> (a -> Bool) -> UISpec a
withCondition wspec legal =
withConditionIO wspec (\a -> return $ legal a)
filterStringInput :: String -> String
filterStringInput = removeCRs
removeCRs :: String -> String
removeCRs [] = []
removeCRs [c] = [c]
removeCRs (c1:c2:cs) =
if c1=='\r' && c2=='\n' then '\n' : removeCRs cs
else c1 : removeCRs (c2:cs)
transformWSpec :: (a->b,b->a) -> UISpec a -> UISpec b
transformWSpec (a2b,b2a) (UISpec wparamsa showuia) =
UISpec (transParam b2a wparamsa)
(\wparamsb b -> showWidget wparamsb b)
where
showWidget wparamsb b =
let (widgetb,reada,seta) = showuia (transParam a2b wparamsb) (b2a b)
readb env = do mba <- reada env
return $ maybe Nothing (Just . a2b) mba
setb val env = seta (b2a val) env
in (widgetb,readb,setb)
transParam :: (b->a) -> UIParams a -> UIParams b
transParam toa (render,errmsg,legal) = (render,errmsg,legal . toa)
adaptWSpec :: (a->b) -> UISpec a -> UISpec b
adaptWSpec a2b = transformWSpec (a2b, invf1 a2b)
hideErrorLabel lref env = do setValue lref "" env
setVisible lref False env
showErrorLabel lref msg env = do setValue lref msg env
setVisible lref True env
wInt :: UISpec Int
wInt =
UISpec (head,"?",const $ return True)
(\wparams v -> intWidget wparams v)
where
intWidget (render,errmsg,legal) v = (render [widget],readval,setval)
where
ref, errorref free
widget = col [
labelS [errorStyle, Class [Display False]] "" `setRef` errorref,
entryS [Class [NameValue "size" "6"]] ref (show v)
]
readval env = do
val <- getValue ref env
let mbn = readMaybeInt (stripSpaces val)
if mbn == Nothing
then do showErrorLabel errorref "Illegal integer:" env
return Nothing
else do
b <- legal (fromJust mbn)
if b then do hideErrorLabel errorref env
return mbn
else do showErrorLabel errorref errmsg env
return Nothing
setval val env = do hideErrorLabel errorref env
setValue ref (show val) env
stripSpaces :: String -> String
stripSpaces = reverse . dropWhile isSpace . reverse . dropWhile isSpace
readMaybeInt :: String -> Maybe Int
readMaybeInt "" = Nothing
readMaybeInt (v:s) | v=='-' = maybe Nothing (\i->Just (-i)) (acc 0 s)
| isDigit v = acc 0 (v:s)
| otherwise = Nothing
where
acc n "" = Just n
acc n (c:cs) | isDigit c = acc (10*n + ord c - ord '0') cs
| otherwise = Nothing
wConstant :: (a->UIWidget) -> UISpec a
wConstant showui =
UISpec (head,"?",const $ return True)
(\wparams v -> ((renderOf wparams) [showui v],
const $ return (Just v),
\ _ _ -> done ))
wHidden :: UISpec a
wHidden =
UISpec (head,"?",const $ return True)
(\_ v -> (label " ",const $ return (Just v),\ _ _ -> done))
wStringStyles :: [StyleClass] -> UISpec (String)
wStringStyles styles =
UISpec (head, "?", const $ return True)
(\wparams v -> stringWidget wparams v)
where
stringWidget (render,errmsg,legal) v = (render [widget],readval,setval)
where
ref, errorref free
widget = col [
labelS [errorStyle] "" `setRef` errorref,
entryS styles ref v
]
readval env = do
val <- getValue ref env
b <- legal val
if b then do hideErrorLabel errorref env
return (Just val)
else do showErrorLabel errorref errmsg env
return Nothing
setval val env = do setValue errorref "" env
setValue ref val env
wString :: UISpec (String)
wString = wStringStyles []
wStringSize :: _ -> UISpec (String)
wStringSize size = wStringStyles [Class [NameValue "size" (show size)]]
wRequiredString :: UISpec String
wRequiredString =
wString `withError` "Missing input:"
`withCondition` (\s -> (not . null) s)
wRequiredStringSize :: _ -> UISpec (String)
wRequiredStringSize size =
wStringSize size `withError` "Missing input:"
`withCondition` (\s -> (not . null) s)
data ErrorRefs = ErrorRefs (UIRef,UIRef)
errorStyle :: StyleClass
errorStyle = Class [Fg Red, Font Bold]
showError :: ErrorRefs -> Maybe String -> UIEnv -> IO ()
showError errorref mberrmsg env |
ErrorRefs (labelref,colref) =:= errorref =
case mberrmsg of
Just errmsg -> do showErrorLabel labelref errmsg env
setErrorBg labelref True env
setErrorBg colref True env
Nothing -> do hideErrorLabel labelref env
setErrorBg labelref False env
setErrorBg colref False env
where labelref,colref free
renderError :: UIWidget -> ErrorRefs -> UIWidget
renderError widget errorref | ErrorRefs (labelref,colref) =:= errorref =
col [labelS [Class [Fg Red, Font Bold, Display False]] ""
`setRef` labelref,
widget] `setRef` colref
where labelref,colref free
wPair :: UISpec a -> UISpec b -> UISpec ((a,b))
wPair = wCons2 (\a b -> (a,b))
wTriple :: UISpec a -> UISpec b -> UISpec c -> UISpec (a,b,c)
wTriple = wCons3 (\a b c -> (a,b,c))
w4Tuple :: UISpec a -> UISpec b -> UISpec c -> UISpec d -> UISpec (a,b,c,d)
w4Tuple = wCons4 (\a b c d -> (a,b,c,d))
w5Tuple :: UISpec a -> UISpec b -> UISpec c -> UISpec d -> UISpec e ->
UISpec (a,b,c,d,e)
w5Tuple = wCons5 (\a b c d e -> (a,b,c,d,e))
w6Tuple :: UISpec a -> UISpec b -> UISpec c -> UISpec d -> UISpec e ->
UISpec f -> UISpec (a,b,c,d,e,f)
w6Tuple = wCons6 (\a b c d e f -> (a,b,c,d,e,f))
w7Tuple :: UISpec a -> UISpec b -> UISpec c -> UISpec d -> UISpec e ->
UISpec f -> UISpec g -> UISpec (a,b,c,d,e,f,g)
w7Tuple = wCons7 (\a b c d e f g -> (a,b,c,d,e,f,g))
w8Tuple :: UISpec a -> UISpec b -> UISpec c -> UISpec d -> UISpec e ->
UISpec f -> UISpec g -> UISpec h -> UISpec (a,b,c,d,e,f,g,h)
w8Tuple = wCons8 (\a b c d e f g h -> (a,b,c,d,e,f,g,h))
w11Tuple :: UISpec a -> UISpec b -> UISpec c -> UISpec d -> UISpec e ->
UISpec f -> UISpec g -> UISpec h -> UISpec i -> UISpec j ->
UISpec k -> UISpec (a,b,c,d,e,f,g,h,i,j,k)
w11Tuple = wCons11 (\a b c d e f g h i j k -> (a,b,c,d,e,f,g,h,i,j,k))
wCons2 :: (a -> b -> c) -> UISpec a -> UISpec b -> UISpec c
wCons2 cons (UISpec rendera showa ) (UISpec renderb showb ) =
UISpec (renderTuple, tupleError, const $ return True) showc
where
showc (render,errmsg,legal) vc | cons va vb =:<= vc =
(renderError (render [hea,heb]) errorref,readc,setc)
where
va,vb,errorref free
(hea,reada,seta) = showa rendera va
(heb,readb,setb) = showb renderb vb
readc env = do
rav <- reada env
rbv <- readb env
if rav==Nothing || rbv==Nothing
then do showError errorref Nothing env
return Nothing
else do
let val = cons (fromJust rav) (fromJust rbv)
b <- legal val
if b
then do showError errorref Nothing env
return (Just val)
else do showError errorref (Just errmsg) env
return Nothing
setc nvc env | cons nva nvb =:<= nvc = do
showError errorref Nothing env
seta nva env
setb nvb env
where nva, nvb free
wTextArea :: (Int,Int) -> UISpec String
wTextArea (rows,cols) = UISpec (head, "?", const $ return True)
(\wparams v -> textareaWidget wparams v)
where
textareaWidget (render,errmsg,legal) v = ((render [widget]),readval,setval)
where
ref, errorlabel free
widget = row [labelS [errorStyle] "" `setRef` errorlabel,
textEdit ref v rows cols
`addHandlers` [Handler FocusOut (Cmd cmd)]]
where cmd env = readval env >> done
readval env = do
val <- getValue ref env
b <- legal val
if b
then do setValue errorlabel "" env
return (Just val)
else do setValue errorlabel errmsg env
return Nothing
setval val env = do setValue errorlabel "" env
setValue ref val env
wList :: UISpec a -> UISpec [a]
wList (UISpec rendera showa) =
UISpec (renderList,"Illegal list:",const $ return True)
(\wparams vas ->
(listWidget wparams (unzip3 (map (showa rendera) vas))))
where
listWidget (render,errmsg,legal) (hes,readvals,setvals) =
(renderError (render hes) errorref, readval, setval)
where
errorref free
readval env = do
mbvals <- mapIO (\r -> r env) readvals
if foldl (||) False (map (\v -> v == Nothing) mbvals)
then do showError errorref Nothing env
return Nothing
else do let value = (map fromJust mbvals)
b <- legal value
if b
then do showError errorref Nothing env
return (Just value)
else do showError errorref (Just errmsg) env
return Nothing
setval vals env = do
showError errorref Nothing env
mapIO_ (\ (set,val) -> set val env) (zip setvals vals)
renderList :: Rendering
renderList = col
wMultiCheckSelect :: (a->[UIWidget]) -> [a] -> UISpec [a]
wMultiCheckSelect showelem selset =
UISpec (renderTuple, tupleError, const $ return True)
(\wparams vs -> checkWidget wparams vs)
where
refs = take (length selset) newVars
checkWidget (render,errmsg,legal) vs =
(renderError (render (map showItem numsetitems))
errorref,readval,setval)
where
errorref free
numsetitems = zip refs selset
showItem (ref,s) =
row ((simpleCheckButton ref "" (s `elem` vs)):(showelem s))
readval env = do
vals <- mapIO (\r -> getValue r env) refs
let selected = concatMap (\ (sel,s) -> if sel == "1" then [s] else [])
(zip vals selset)
b <- legal selected
if b then do showError errorref Nothing env
return (Just selected)
else do showError errorref (Just errmsg) env
return Nothing
setval vals env = do
showError errorref Nothing env
mapIO_ (\ref -> setValue ref "0" env) refs
mapIO_ (\val -> do let mbidx = elemIndex val selset
maybe (done) (\n -> setValue (refs!!n) "1" env) mbidx) vals
newVars :: [_]
newVars = unknown : newVars
wSelect :: (a->String) -> [a] -> UISpec a
wSelect showelem selset =
UISpec (head,"?",const $ return True)
(\wparams v -> selWidget wparams v)
where
selWidget (render,_,_) v = ((render [maybe (UI2HTML.selection ref items)
(\i -> UI2HTML.selectionInitial ref items i)
idx]),readval,setval)
where
ref free
idx = elemIndex v selset
items = (map showelem selset)
readval env = do val <- getValue ref env
return (Just (selset!!(readNat val)))
setval val env = do let midx = elemIndex val selset
maybe (done) (\n -> setValue ref (show n) env) midx
wSelectInt :: [Int] -> UISpec Int
wSelectInt = wSelect show
wSelectBool :: String -> String -> UISpec Bool
wSelectBool true false = wSelect (\b->if b then true else false) [True,False]
renderTuple :: Rendering
renderTuple = row
tupleError :: String
tupleError = "Illegal combination:"
typedui2ui :: UISpec a -> a ->
(UIWidget,
UIEnv -> IO (Maybe a),
a -> UIEnv -> IO (),
(a -> a) -> UIEnv -> IO ())
typedui2ui (UISpec wparams show) val = (widget,getval,setval,updval)
where
(widget,getval,setval) = show wparams val
updval upd env = do mbn <- getval env
maybe (done) (\n -> setval (upd n) env) mbn
typeduistore2ui :: UISpec a -> a -> (a -> UIEnv -> IO ()) ->
(UIWidget,UIEnv -> IO ())
typeduistore2ui (UISpec wparams show) val store = (ui,handler)
where
(ui,getval,_) = show wparams val
handler env = do mbval <- getval env
maybe (done) (\v -> store v env) mbval
runUISpec uispec val store = do
let (ui,read) = typeduistore2ui uispec val store
runUI "WUI" (col [ui, button read "Submit"])
wRadioSelect :: (a->[UIWidget]) -> [a] -> UISpec a
wRadioSelect showelem selset =
UISpec (renderTuple, tupleError, const $ return True)
(\wparams v -> radioWidget wparams v)
where
radioWidget (render,_,_) v =
(render (map showItem numhitems),readval,setval)
where
ref free
idx = maybe 0 id (elemIndex v selset)
numhitems = zip [0..] (map showelem selset)
showItem (i,s) = row ([(if i==idx then radio_main else radio_other)
ref (show i)] ++ s)
readval env = do
val <- getValue ref env
return (Just (selset!!(readNat val)))
setval val env = do
maybe (done) (\n -> setValue ref (show n) env) (elemIndex val selset)
data WuiHandler = WHandler (UIEnv -> IO ())
wuiHandler2button :: String -> WuiHandler -> Widget _ (UIEnv -> IO ()) _
wuiHandler2button title (WHandler handler) = button handler title
wuiInForm :: UISpec a -> a -> (a -> IO HTML.HtmlForm) ->
(UIWidget -> WuiHandler -> b) -> IO b
wuiInForm uispec val store userform = return $ userform ui (WHandler read)
where (ui,read) = wui2html uispec val store
wui2html :: UISpec a -> a -> (a -> IO HTML.HtmlForm) ->
(UIWidget,UIEnv -> IO ())
wui2html (UISpec wparams show) val store = (ui,read)
where
(ui,readval,_) = show wparams val
read env = do
mbval <- readval env
maybe (done)
(\v -> do hform <- store v
nextHtmlForm hform env)
mbval
mainWUI :: UISpec a -> a -> (a -> IO HTML.HtmlForm) -> IO HTML.HtmlForm
mainWUI uispec val store = do
let (ui,read) = wui2html uispec val store
runUI "WUI" (col [ui, button read "Submit"])
resultForm :: a -> IO HTML.HtmlForm
resultForm v = return $ HTML.form
"Result" [HTML.htxt ("Modified value: "++ show v)]
wCons3 :: (a->b->c->d) -> UISpec a -> UISpec b -> UISpec c -> UISpec d
wCons3 cons (UISpec rendera showa) (UISpec renderb showb)
(UISpec renderc showc) =
UISpec (renderTuple, tupleError, const $ return True) showd
where
showd (render,errmsg,legal) vd | cons va vb vc =:<= vd =
(renderError (render [hea,heb,hec]) errorref,readd,setd)
where
va,vb,vc free
errorref free
(hea,reada,seta) = showa rendera va
(heb,readb,setb) = showb renderb vb
(hec,readc,setc) = showc renderc vc
readd env = do
rav <- reada env
rbv <- readb env
rcv <- readc env
if rav==Nothing || rbv==Nothing || rcv==Nothing
then do showError errorref Nothing env
return Nothing
else do
let value = cons (fromJust rav) (fromJust rbv) (fromJust rcv)
b <- legal value
if b
then do showError errorref Nothing env
return (Just value)
else do showError errorref (Just errmsg) env
return Nothing
setd nvd env | cons nva nvb nvc =:<= nvd = do
showError errorref Nothing env
seta nva env
setb nvb env
setc nvc env
where nva, nvb, nvc free
wCons4 :: (a->b->c->d->e) ->
UISpec a -> UISpec b -> UISpec c -> UISpec d -> UISpec e
wCons4 cons
(UISpec wparama showa) (UISpec wparamb showb)
(UISpec wparamc showc) (UISpec wparamd showd) =
UISpec (renderTuple,tupleError, const $ return True) showe
where
showe (render,errmsg,legal) ve | cons va vb vc vd =:<= ve =
(renderError (render [hea,heb,hec,hed]) errorref,reade,sete)
where
va,vb,vc,vd free
errorref free
(hea,reada,seta) = showa wparama va
(heb,readb,setb) = showb wparamb vb
(hec,readc,setc) = showc wparamc vc
(hed,readd,setd) = showd wparamd vd
reade env = do
rav <- reada env
rbv <- readb env
rcv <- readc env
rdv <- readd env
if rav==Nothing || rbv==Nothing || rcv==Nothing || rdv==Nothing
then do showError errorref Nothing env
return Nothing
else do
let value = cons (fromJust rav) (fromJust rbv)
(fromJust rcv) (fromJust rdv)
b <- legal value
if b then do showError errorref Nothing env
return (Just value)
else do showError errorref (Just errmsg) env
return Nothing
sete nve env | cons nva nvb nvc nvd =:<= nve = do
showError errorref Nothing env
seta nva env
setb nvb env
setc nvc env
setd nvd env
where nva, nvb, nvc, nvd free
wCons5 :: (a -> b -> c -> d -> e -> f) -> UISpec a -> UISpec b -> UISpec c ->
UISpec d -> UISpec e -> UISpec f
wCons5 cons (UISpec wparama showa) (UISpec wparamb showb) (UISpec wparamc showc)
(UISpec wparamd showd) (UISpec wparame showe)
= UISpec (renderTuple,tupleError, const $ return True) showh
where
showh (render,errmsg,legal) vf | cons va vb vc vd ve =:<= vf =
(renderError (render [hea,heb,hec,hed,hee]) errorref,readf,setf)
where
va,vb,vc,vd,ve free
errorref free
(hea,reada,seta) = showa wparama va
(heb,readb,setb) = showb wparamb vb
(hec,readc,setc) = showc wparamc vc
(hed,readd,setd) = showd wparamd vd
(hee,reade,sete) = showe wparame ve
readf env = do
rav <- reada env
rbv <- readb env
rcv <- readc env
rdv <- readd env
rev <- reade env
if rav==Nothing || rbv==Nothing || rcv==Nothing ||
rdv==Nothing || rev==Nothing
then do showError errorref Nothing env
return Nothing
else do
let value = cons (fromJust rav) (fromJust rbv) (fromJust rcv)
(fromJust rdv) (fromJust rev)
b <- legal value
if b then do showError errorref Nothing env
return (Just value)
else do showError errorref (Just errmsg) env
return Nothing
setf nvf env | cons nva nvb nvc nvd nve =:<= nvf = do
showError errorref Nothing env
seta nva env
setb nvb env
setc nvc env
setd nvd env
sete nve env
where nva, nvb, nvc, nvd, nve free
wCons6 :: (a -> b -> c -> d -> e -> f -> g) -> UISpec a -> UISpec b ->
UISpec c -> UISpec d -> UISpec e -> UISpec f -> UISpec g
wCons6 cons
(UISpec wparama showa) (UISpec wparamb showb)
(UISpec wparamc showc) (UISpec wparamd showd)
(UISpec wparame showe) (UISpec wparamf showf) =
UISpec (renderTuple,tupleError, const $ return True) showh
where
showh (render,errmsg,legal) vg | cons va vb vc vd ve vf =:<= vg =
(renderError (render [hea,heb,hec,hed,hee,hef]) errorref,readg,setg)
where
va,vb,vc,vd,ve,vf free
errorref free
(hea,reada,seta) = showa wparama va
(heb,readb,setb) = showb wparamb vb
(hec,readc,setc) = showc wparamc vc
(hed,readd,setd) = showd wparamd vd
(hee,reade,sete) = showe wparame ve
(hef,readf,setf) = showf wparamf vf
readg env = do
rav <- reada env
rbv <- readb env
rcv <- readc env
rdv <- readd env
rev <- reade env
rfv <- readf env
if rav==Nothing || rbv==Nothing || rcv==Nothing || rdv==Nothing ||
rev==Nothing || rfv==Nothing
then do showError errorref Nothing env
return Nothing
else do
let value = cons (fromJust rav) (fromJust rbv)
(fromJust rcv) (fromJust rdv)
(fromJust rev) (fromJust rfv)
b <- legal value
if b then do showError errorref Nothing env
return (Just value)
else do showError errorref (Just errmsg) env
return Nothing
setg nvg env | cons nva nvb nvc nvd nve nvf =:<= nvg = do
showError errorref Nothing env
seta nva env
setb nvb env
setc nvc env
setd nvd env
sete nve env
setf nvf env
where nva, nvb, nvc, nvd, nve, nvf free
wCons7 :: (a -> b -> c -> d -> e -> f -> g -> h) -> UISpec a -> UISpec b ->
UISpec c -> UISpec d -> UISpec e -> UISpec f -> UISpec g -> UISpec h
wCons7 cons
(UISpec wparama showa) (UISpec wparamb showb)
(UISpec wparamc showc) (UISpec wparamd showd)
(UISpec wparame showe) (UISpec wparamf showf)
(UISpec wparamg showg)
= UISpec (renderTuple,tupleError, const $ return True) showh
where
showh (render,errmsg,legal) vh | cons va vb vc vd ve vf vg =:<= vh =
(renderError (render [hea,heb,hec,hed,hee,hef,heg]) errorref,readh,seth)
where
va,vb,vc,vd,ve,vf,vg free
errorref free
(hea,reada,seta) = showa wparama va
(heb,readb,setb) = showb wparamb vb
(hec,readc,setc) = showc wparamc vc
(hed,readd,setd) = showd wparamd vd
(hee,reade,sete) = showe wparame ve
(hef,readf,setf) = showf wparamf vf
(heg,readg,setg) = showg wparamg vg
readh env = do
rav <- reada env
rbv <- readb env
rcv <- readc env
rdv <- readd env
rev <- reade env
rfv <- readf env
rgv <- readg env
if rav==Nothing || rbv==Nothing || rcv==Nothing || rdv==Nothing ||
rev==Nothing || rfv==Nothing || rgv==Nothing
then do showError errorref Nothing env
return Nothing
else do
let value = cons (fromJust rav) (fromJust rbv) (fromJust rcv)
(fromJust rdv) (fromJust rev) (fromJust rfv)
(fromJust rgv)
b <- legal value
if b then do showError errorref Nothing env
return (Just value)
else do showError errorref (Just errmsg) env
return Nothing
seth nvh env | cons nva nvb nvc nvd nve nvf nvg =:<= nvh = do
showError errorref Nothing env
seta nva env
setb nvb env
setc nvc env
setd nvd env
sete nve env
setf nvf env
setg nvg env
where nva, nvb, nvc, nvd, nve, nvf, nvg free
wCons8 :: (a -> b -> c -> d -> e -> f -> g -> h -> i) -> UISpec a ->
UISpec b -> UISpec c -> UISpec d -> UISpec e -> UISpec f -> UISpec g ->
UISpec h -> UISpec i
wCons8 cons
(UISpec wparama showa) (UISpec wparamb showb)
(UISpec wparamc showc) (UISpec wparamd showd)
(UISpec wparame showe) (UISpec wparamf showf)
(UISpec wparamg showg) (UISpec wparamh showh)
=
UISpec (renderTuple,tupleError, const $ return True) showi
where
showi (render,errmsg,legal) vi | cons va vb vc vd ve vf vg vh =:<= vi =
(renderError (render [hea,heb,hec,hed,hee,hef,heg,heh])
errorref,readi,seti)
where
va,vb,vc,vd,ve,vf,vg,vh free
errorref free
(hea,reada,seta) = showa wparama va
(heb,readb,setb) = showb wparamb vb
(hec,readc,setc) = showc wparamc vc
(hed,readd,setd) = showd wparamd vd
(hee,reade,sete) = showe wparame ve
(hef,readf,setf) = showf wparamf vf
(heg,readg,setg) = showg wparamg vg
(heh,readh,seth) = showh wparamh vh
readi env = do
rav <- reada env
rbv <- readb env
rcv <- readc env
rdv <- readd env
rev <- reade env
rfv <- readf env
rgv <- readg env
rhv <- readh env
if rav==Nothing || rbv==Nothing || rcv==Nothing || rdv==Nothing ||
rev==Nothing || rfv==Nothing || rgv==Nothing || rhv==Nothing
then do showError errorref Nothing env
return Nothing
else do
let value = cons (fromJust rav) (fromJust rbv) (fromJust rcv)
(fromJust rdv) (fromJust rev) (fromJust rfv)
(fromJust rgv) (fromJust rhv)
b <- legal value
if b then do showError errorref Nothing env
return (Just value)
else do showError errorref (Just errmsg) env
return Nothing
seti nvi env | cons nva nvb nvc nvd nve nvf nvg nvh =:<= nvi = do
showError errorref Nothing env
seta nva env
setb nvb env
setc nvc env
setd nvd env
sete nve env
setf nvf env
setg nvg env
seth nvh env
where nva, nvb, nvc, nvd, nve, nvf, nvg, nvh free
wCons11 :: (a -> b -> c -> d -> e -> f -> g -> h -> i -> j -> k -> l) ->
UISpec a -> UISpec b -> UISpec c -> UISpec d -> UISpec e ->
UISpec f -> UISpec g -> UISpec h -> UISpec i -> UISpec j ->
UISpec k -> UISpec l
wCons11 cons
(UISpec wparama showa) (UISpec wparamb showb) (UISpec wparamc showc)
(UISpec wparamd showd) (UISpec wparame showe) (UISpec wparamf showf)
(UISpec wparamg showg) (UISpec wparamh showh) (UISpec wparami showi)
(UISpec wparamj showj) (UISpec wparamk showk)
= UISpec (renderTuple,tupleError, const $ return True) showl
where
showl (render,errmsg,legal) vl |
cons va vb vc vd ve vf vg vh vi vj vk =:<= vl =
(renderError (render [hea,heb,hec,hed,hee,hef,heg,heh,hei,hej,hek])
errorref,readl,setl)
where
va,vb,vc,vd,ve,vf,vg,vh,vi,vj,vk free
errorref free
(hea,reada,seta) = showa wparama va
(heb,readb,setb) = showb wparamb vb
(hec,readc,setc) = showc wparamc vc
(hed,readd,setd) = showd wparamd vd
(hee,reade,sete) = showe wparame ve
(hef,readf,setf) = showf wparamf vf
(heg,readg,setg) = showg wparamg vg
(heh,readh,seth) = showh wparamh vh
(hei,readi,seti) = showi wparami vi
(hej,readj,setj) = showj wparamj vj
(hek,readk,setk) = showk wparamk vk
readl env = do
rav <- reada env
rbv <- readb env
rcv <- readc env
rdv <- readd env
rev <- reade env
rfv <- readf env
rgv <- readg env
rhv <- readh env
riv <- readi env
rjv <- readj env
rkv <- readk env
if rav==Nothing || rbv==Nothing || rcv==Nothing || rdv==Nothing ||
rev==Nothing || rfv==Nothing || rgv==Nothing || rhv==Nothing ||
riv==Nothing || rjv==Nothing || rkv==Nothing
then do showError errorref Nothing env
return Nothing
else do
let value = cons (fromJust rav) (fromJust rbv) (fromJust rcv)
(fromJust rdv) (fromJust rev) (fromJust rfv)
(fromJust rgv) (fromJust rhv) (fromJust riv)
(fromJust rjv) (fromJust rkv)
b <- legal value
if b then do showError errorref Nothing env
return (Just value)
else do showError errorref (Just errmsg) env
return Nothing
setl nvl env |
cons nva nvb nvc nvd nve nvf nvg nvh nvi nvj nvk =:<= nvl = do
showError errorref Nothing env
seta nva env
setb nvb env
setc nvc env
setd nvd env
sete nve env
setf nvf env
setg nvg env
seth nvh env
seti nvi env
setj nvj env
setk nvk env
where nva, nvb, nvc, nvd, nve, nvf, nvg, nvh, nvi, nvj, nvk free
|