aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/ruby/case.jvm.lux
blob: d83a5cd0afe831f85e6c2c34f0284c1fdb7918c9 (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
(.module:
  lux
  (lux (control [monad #+ do]
                ["ex" exception #+ exception:])
       (data text/format
             (coll [list "list/" Fold<List>]))
       [macro #+ "meta/" Monad<Meta>])
  (luxc [lang]
        (lang ["ls" synthesis]
              (host [ruby #+ Ruby Expression Statement])))
  [//]
  (// [".T" runtime]
      [".T" primitive]
      [".T" reference]))

(def: (expression-block body)
  (-> Statement Expression)
  (ruby.call (list)
             (ruby.lambda #.None (list)
                     body)))

(def: #export (translate-let translate register valueS bodyS)
  (-> (-> ls.Synthesis (Meta Expression)) Nat ls.Synthesis ls.Synthesis
      (Meta Expression))
  (do macro.Monad<Meta>
    [valueO (translate valueS)
     bodyO (translate bodyS)]
    (wrap (expression-block
           (ruby.block! (list (ruby.set! (list (referenceT.variable register)) valueO)
                              (ruby.return! bodyO)))))))

(def: #export (translate-record-get translate valueS path)
  (-> (-> ls.Synthesis (Meta Expression)) ls.Synthesis (List [Nat Bit])
      (Meta Expression))
  (do macro.Monad<Meta>
    [valueO (translate valueS)]
    (wrap (list/fold (function (_ [idx tail?] source)
                       (let [method (if tail?
                                      runtimeT.product//right
                                      runtimeT.product//left)]
                         (method source (ruby.int (:coerce Int idx)))))
                     valueO
                     path))))

(def: #export (translate-if testO thenO elseO)
  (-> Expression Expression Expression Expression)
  (expression-block
   (ruby.if! testO
             (ruby.return! thenO)
             (ruby.return! elseO))))

(def: savepoint
  Expression
  "pm_cursor_savepoint")

(def: cursor
  Expression
  "pm_cursor")

(def: (push-cursor! value)
  (-> Expression Statement)
  (ruby.statement (ruby.send "push" (list value) cursor)))

(def: save-cursor!
  Statement
  (ruby.statement
   (ruby.send "push"
              (list (ruby.array-range (ruby.int 0) (ruby.int -1) cursor))
              savepoint)))

(def: restore-cursor!
  Statement
  (ruby.set! (list cursor) (ruby.send "pop" (list) savepoint)))

(def: cursor-top
  Expression
  (ruby.nth (ruby.- (ruby.int 1)
                    (ruby.length cursor))
            cursor))

(def: pop-cursor!
  Statement
  (ruby.statement (ruby.send "pop" (list) cursor)))

(def: pm-error
  Expression
  (ruby.string "PM-ERROR"))

(exception: #export (Unrecognized-Path {message Text})
  message)

(def: (translate-pattern-matching' translate path)
  (-> (-> ls.Synthesis (Meta Expression)) Code (Meta Expression))
  (case path
    (^code ("lux case exec" (~ bodyS)))
    (do macro.Monad<Meta>
      [bodyO (translate bodyS)]
      (wrap (ruby.return! bodyO)))

    (^code ("lux case pop"))
    (meta/wrap pop-cursor!)

    (^code ("lux case bind" (~ [_ (#.Nat register)])))
    (meta/wrap (ruby.set! (list (referenceT.variable register)) cursor-top))

    (^template [<tag> <format>]
      [_ (<tag> value)]
      (meta/wrap (ruby.when! (ruby.not (ruby.= (|> value <format>) cursor-top))
                             (ruby.raise pm-error))))
    ([#.Int  ruby.int]
     [#.Bit  ruby.bool]
     [#.Frac ruby.float]
     [#.Text ruby.string])

    (^template [<pm> <getter>]
      (^code (<pm> (~ [_ (#.Nat idx)])))
      (meta/wrap (push-cursor! (<getter> cursor-top (ruby.int (:coerce Int idx))))))
    (["lux case tuple left" runtimeT.product//left]
     ["lux case tuple right" runtimeT.product//right])

    (^template [<pm> <flag>]
      (^code (<pm> (~ [_ (#.Nat idx)])))
      (meta/wrap (ruby.block! (list (ruby.set! (list "temp") (runtimeT.sum//get cursor-top (ruby.int (:coerce Int idx)) <flag>))
                                    (ruby.if! (ruby.= ruby.nil "temp")
                                              (ruby.raise pm-error)
                                              (push-cursor! "temp"))))))
    (["lux case variant left" ruby.nil]
     ["lux case variant right" (ruby.string "")])

    (^code ("lux case seq" (~ leftP) (~ rightP)))
    (do macro.Monad<Meta>
      [leftO (translate-pattern-matching' translate leftP)
       rightO (translate-pattern-matching' translate rightP)]
      (wrap (ruby.block! (list leftO rightO))))

    (^code ("lux case alt" (~ leftP) (~ rightP)))
    (do macro.Monad<Meta>
      [leftO (translate-pattern-matching' translate leftP)
       rightO (translate-pattern-matching' translate rightP)]
      (wrap (ruby.begin! (ruby.block! (list save-cursor!
                                            leftO))
                         (list [(list) "alt_error" (ruby.if! (ruby.= pm-error (ruby.field "message" "alt_error"))
                                                             (ruby.block! (list restore-cursor!
                                                                                rightO))
                                                             (ruby.raise "alt_error"))]))))

    _
    (lang.throw Unrecognized-Path (%code path))
    ))

(def: (translate-pattern-matching translate path)
  (-> (-> ls.Synthesis (Meta Expression)) Code (Meta Expression))
  (do macro.Monad<Meta>
    [pattern-matching (translate-pattern-matching' translate path)]
    (wrap (ruby.begin! pattern-matching
                       (list [(list) "alt_error"
                              (ruby.if! (ruby.= pm-error (ruby.field "message" "alt_error"))
                                        (ruby.raise (ruby.string "Invalid expression for pattern-matching."))
                                        (ruby.raise "alt_error"))])))))

(def: (initialize-pattern-matching stack-init)
  (-> Expression Statement)
  (ruby.block! (list (ruby.set! (list cursor) (ruby.array (list stack-init)))
                     (ruby.set! (list savepoint) (ruby.array (list))))))

(def: #export (translate-case translate valueS path)
  (-> (-> ls.Synthesis (Meta Expression)) ls.Synthesis Code (Meta Expression))
  (do macro.Monad<Meta>
    [valueO (translate valueS)
     pattern-matching (translate-pattern-matching translate path)]
    (wrap (expression-block
           (ruby.block! (list (initialize-pattern-matching valueO)
                              pattern-matching))))))