annotate src/monoize.sml @ 255:69d337f186eb

Monoized GROUP BY
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 15:04:10 -0400
parents f8d9395575ec
children 40c33706d887
rev   line source
adamc@25 1 (* Copyright (c) 2008, Adam Chlipala
adamc@25 2 * All rights reserved.
adamc@25 3 *
adamc@25 4 * Redistribution and use in source and binary forms, with or without
adamc@25 5 * modification, are permitted provided that the following conditions are met:
adamc@25 6 *
adamc@25 7 * - Redistributions of source code must retain the above copyright notice,
adamc@25 8 * this list of conditions and the following disclaimer.
adamc@25 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@25 10 * this list of conditions and the following disclaimer in the documentation
adamc@25 11 * and/or other materials provided with the distribution.
adamc@25 12 * - The names of contributors may not be used to endorse or promote products
adamc@25 13 * derived from this software without specific prior written permission.
adamc@25 14 *
adamc@25 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@25 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@25 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@25 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@25 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@25 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@25 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@25 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@25 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@25 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@25 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@25 26 *)
adamc@25 27
adamc@25 28 structure Monoize :> MONOIZE = struct
adamc@25 29
adamc@25 30 structure E = ErrorMsg
adamc@25 31 structure Env = CoreEnv
adamc@25 32
adamc@25 33 structure L = Core
adamc@25 34 structure L' = Mono
adamc@25 35
adamc@196 36 structure IM = IntBinaryMap
adamc@196 37
adamc@196 38 val dummyTyp = (L'.TDatatype (0, ref (L'.Enum, [])), E.dummySpan)
adamc@25 39
adamc@252 40 structure U = MonoUtil
adamc@252 41
adamc@252 42 val liftExpInExp =
adamc@252 43 U.Exp.mapB {typ = fn t => t,
adamc@252 44 exp = fn bound => fn e =>
adamc@252 45 case e of
adamc@252 46 L'.ERel xn =>
adamc@252 47 if xn < bound then
adamc@252 48 e
adamc@252 49 else
adamc@252 50 L'.ERel (xn + 1)
adamc@252 51 | _ => e,
adamc@252 52 bind = fn (bound, U.Exp.RelE _) => bound + 1
adamc@252 53 | (bound, _) => bound}
adamc@252 54
adamc@25 55 fun monoName env (all as (c, loc)) =
adamc@25 56 let
adamc@25 57 fun poly () =
adamc@25 58 (E.errorAt loc "Unsupported name constructor";
adamc@25 59 Print.eprefaces' [("Constructor", CorePrint.p_con env all)];
adamc@25 60 "")
adamc@25 61 in
adamc@25 62 case c of
adamc@25 63 L.CName s => s
adamc@25 64 | _ => poly ()
adamc@25 65 end
adamc@25 66
adamc@196 67 fun monoType env =
adamc@25 68 let
adamc@196 69 fun mt env dtmap (all as (c, loc)) =
adamc@196 70 let
adamc@196 71 fun poly () =
adamc@196 72 (E.errorAt loc "Unsupported type constructor";
adamc@196 73 Print.eprefaces' [("Constructor", CorePrint.p_con env all)];
adamc@196 74 dummyTyp)
adamc@196 75 in
adamc@196 76 case c of
adamc@196 77 L.TFun (c1, c2) => (L'.TFun (mt env dtmap c1, mt env dtmap c2), loc)
adamc@196 78 | L.TCFun _ => poly ()
adamc@196 79 | L.TRecord (L.CRecord ((L.KType, _), xcs), _) =>
adamc@196 80 (L'.TRecord (map (fn (x, t) => (monoName env x, mt env dtmap t)) xcs), loc)
adamc@196 81 | L.TRecord _ => poly ()
adamc@196 82
adamc@196 83 | L.CApp ((L.CApp ((L.CApp ((L.CFfi ("Basis", "xml"), _), _), _), _), _), _) =>
adamc@196 84 (L'.TFfi ("Basis", "string"), loc)
adamc@196 85 | L.CApp ((L.CApp ((L.CFfi ("Basis", "xhtml"), _), _), _), _) =>
adamc@196 86 (L'.TFfi ("Basis", "string"), loc)
adamc@196 87
adamc@251 88 | L.CApp ((L.CFfi ("Basis", "transaction"), _), t) =>
adamc@252 89 (L'.TFun ((L'.TRecord [], loc), mt env dtmap t), loc)
adamc@252 90 | L.CApp ((L.CFfi ("Basis", "sql_table"), _), _) =>
adamc@252 91 (L'.TFfi ("Basis", "string"), loc)
adamc@252 92 | L.CApp ((L.CApp ((L.CFfi ("Basis", "sql_query"), _), _), _), _) =>
adamc@252 93 (L'.TFfi ("Basis", "string"), loc)
adamc@252 94 | L.CApp ((L.CApp ((L.CApp ((L.CFfi ("Basis", "sql_query1"), _), _), _), _), _), _) =>
adamc@252 95 (L'.TFfi ("Basis", "string"), loc)
adamc@252 96 | L.CApp ((L.CApp ((L.CApp ((L.CApp ((L.CFfi ("Basis", "sql_exp"), _), _), _), _), _), _), _), _) =>
adamc@252 97 (L'.TFfi ("Basis", "string"), loc)
adamc@252 98
adamc@252 99 | L.CApp ((L.CApp ((L.CFfi ("Basis", "sql_subset"), _), _), _), _) =>
adamc@252 100 (L'.TRecord [], loc)
adamc@252 101 | L.CFfi ("Basis", "sql_relop") =>
adamc@252 102 (L'.TFfi ("Basis", "string"), loc)
adamc@252 103 | L.CFfi ("Basis", "sql_direction") =>
adamc@252 104 (L'.TFfi ("Basis", "string"), loc)
adamc@252 105 | L.CApp ((L.CApp ((L.CFfi ("Basis", "sql_order_by"), _), _), _), _) =>
adamc@252 106 (L'.TFfi ("Basis", "string"), loc)
adamc@252 107 | L.CFfi ("Basis", "sql_limit") =>
adamc@252 108 (L'.TFfi ("Basis", "string"), loc)
adamc@252 109 | L.CFfi ("Basis", "sql_offset") =>
adamc@252 110 (L'.TFfi ("Basis", "string"), loc)
adamc@252 111
adamc@252 112 | L.CApp ((L.CFfi ("Basis", "sql_injectable"), _), t) =>
adamc@252 113 (L'.TFun (mt env dtmap t, (L'.TFfi ("Basis", "string"), loc)), loc)
adamc@252 114 | L.CApp ((L.CApp ((L.CFfi ("Basis", "sql_unary"), _), _), _), _) =>
adamc@252 115 (L'.TFfi ("Basis", "string"), loc)
adamc@252 116 | L.CApp ((L.CApp ((L.CApp ((L.CFfi ("Basis", "sql_binary"), _), _), _), _), _), _) =>
adamc@252 117 (L'.TFfi ("Basis", "string"), loc)
adamc@252 118 | L.CFfi ("Basis", "sql_comparison") =>
adamc@252 119 (L'.TFfi ("Basis", "string"), loc)
adamc@252 120 | L.CApp ((L.CFfi ("Basis", "sql_aggregate"), _), t) =>
adamc@252 121 (L'.TFfi ("Basis", "string"), loc)
adamc@252 122 | L.CApp ((L.CFfi ("Basis", "sql_summable"), _), _) =>
adamc@252 123 (L'.TRecord [], loc)
adamc@252 124 | L.CApp ((L.CFfi ("Basis", "sql_maxable"), _), _) =>
adamc@252 125 (L'.TRecord [], loc)
adamc@251 126
adamc@196 127 | L.CRel _ => poly ()
adamc@196 128 | L.CNamed n =>
adamc@196 129 (case IM.find (dtmap, n) of
adamc@196 130 SOME r => (L'.TDatatype (n, r), loc)
adamc@196 131 | NONE =>
adamc@196 132 let
adamc@196 133 val r = ref (L'.Default, [])
adamc@196 134 val (_, xs, xncs) = Env.lookupDatatype env n
adamc@196 135
adamc@196 136 val dtmap' = IM.insert (dtmap, n, r)
adamc@196 137
adamc@196 138 val xncs = map (fn (x, n, to) => (x, n, Option.map (mt env dtmap') to)) xncs
adamc@196 139 in
adamc@196 140 case xs of
adamc@198 141 [] =>(r := (ElabUtil.classifyDatatype xncs, xncs);
adamc@196 142 (L'.TDatatype (n, r), loc))
adamc@196 143 | _ => poly ()
adamc@196 144 end)
adamc@196 145 | L.CFfi mx => (L'.TFfi mx, loc)
adamc@196 146 | L.CApp _ => poly ()
adamc@196 147 | L.CAbs _ => poly ()
adamc@196 148
adamc@196 149 | L.CName _ => poly ()
adamc@196 150
adamc@196 151 | L.CRecord _ => poly ()
adamc@196 152 | L.CConcat _ => poly ()
adamc@196 153 | L.CFold _ => poly ()
adamc@196 154 | L.CUnit => poly ()
adamc@214 155
adamc@214 156 | L.CTuple _ => poly ()
adamc@214 157 | L.CProj _ => poly ()
adamc@196 158 end
adamc@25 159 in
adamc@196 160 mt env IM.empty
adamc@25 161 end
adamc@25 162
adamc@25 163 val dummyExp = (L'.EPrim (Prim.Int 0), E.dummySpan)
adamc@25 164
adamc@179 165 structure IM = IntBinaryMap
adamc@179 166
adamc@179 167 datatype foo_kind =
adamc@179 168 Attr
adamc@179 169 | Url
adamc@179 170
adamc@179 171 fun fk2s fk =
adamc@179 172 case fk of
adamc@179 173 Attr => "attr"
adamc@179 174 | Url => "url"
adamc@179 175
adamc@179 176 structure Fm :> sig
adamc@179 177 type t
adamc@179 178
adamc@179 179 val empty : int -> t
adamc@179 180
adamc@179 181 val lookup : t -> foo_kind -> int -> (int -> t -> L'.decl * t) -> t * int
adamc@179 182 val enter : t -> t
adamc@179 183 val decls : t -> L'.decl list
adamc@179 184 end = struct
adamc@179 185
adamc@179 186 structure M = BinaryMapFn(struct
adamc@179 187 type ord_key = foo_kind
adamc@179 188 fun compare x =
adamc@179 189 case x of
adamc@179 190 (Attr, Attr) => EQUAL
adamc@179 191 | (Attr, _) => LESS
adamc@179 192 | (_, Attr) => GREATER
adamc@179 193
adamc@179 194 | (Url, Url) => EQUAL
adamc@179 195 end)
adamc@179 196
adamc@179 197 type t = {
adamc@179 198 count : int,
adamc@179 199 map : int IM.map M.map,
adamc@179 200 decls : L'.decl list
adamc@179 201 }
adamc@179 202
adamc@179 203 fun empty count = {
adamc@179 204 count = count,
adamc@179 205 map = M.empty,
adamc@179 206 decls = []
adamc@179 207 }
adamc@179 208
adamc@179 209 fun enter ({count, map, ...} : t) = {count = count, map = map, decls = []}
adamc@179 210 fun decls ({decls, ...} : t) = decls
adamc@179 211
adamc@179 212 fun lookup (t as {count, map, decls}) k n thunk =
adamc@120 213 let
adamc@179 214 val im = Option.getOpt (M.find (map, k), IM.empty)
adamc@179 215 in
adamc@179 216 case IM.find (im, n) of
adamc@179 217 NONE =>
adamc@179 218 let
adamc@179 219 val n' = count
adamc@179 220 val (d, {count, map, decls}) = thunk count {count = count + 1,
adamc@179 221 map = M.insert (map, k, IM.insert (im, n, n')),
adamc@179 222 decls = decls}
adamc@179 223 in
adamc@179 224 ({count = count,
adamc@179 225 map = map,
adamc@179 226 decls = d :: decls}, n')
adamc@179 227 end
adamc@179 228 | SOME n' => (t, n')
adamc@179 229 end
adamc@179 230
adamc@179 231 end
adamc@185 232
adamc@185 233
adamc@185 234 fun capitalize s =
adamc@185 235 if s = "" then
adamc@185 236 s
adamc@185 237 else
adamc@185 238 str (Char.toUpper (String.sub (s, 0))) ^ String.extract (s, 1, NONE)
adamc@179 239
adamc@179 240 fun fooifyExp fk env =
adamc@179 241 let
adamc@179 242 fun fooify fm (e, tAll as (t, loc)) =
adamc@120 243 case #1 e of
adamc@120 244 L'.EClosure (fnam, [(L'.ERecord [], _)]) =>
adamc@120 245 let
adamc@120 246 val (_, _, _, s) = Env.lookupENamed env fnam
adamc@120 247 in
adamc@183 248 ((L'.EPrim (Prim.String ("/" ^ s)), loc), fm)
adamc@120 249 end
adamc@120 250 | L'.EClosure (fnam, args) =>
adamc@120 251 let
adamc@120 252 val (_, ft, _, s) = Env.lookupENamed env fnam
adamc@120 253 val ft = monoType env ft
adamc@111 254
adamc@179 255 fun attrify (args, ft, e, fm) =
adamc@120 256 case (args, ft) of
adamc@179 257 ([], _) => (e, fm)
adamc@120 258 | (arg :: args, (L'.TFun (t, ft), _)) =>
adamc@179 259 let
adamc@179 260 val (arg', fm) = fooify fm (arg, t)
adamc@179 261 in
adamc@179 262 attrify (args, ft,
adamc@179 263 (L'.EStrcat (e,
adamc@179 264 (L'.EStrcat ((L'.EPrim (Prim.String "/"), loc),
adamc@179 265 arg'), loc)), loc),
adamc@179 266 fm)
adamc@179 267 end
adamc@120 268 | _ => (E.errorAt loc "Type mismatch encoding attribute";
adamc@179 269 (e, fm))
adamc@120 270 in
adamc@183 271 attrify (args, ft, (L'.EPrim (Prim.String ("/" ^ s)), loc), fm)
adamc@120 272 end
adamc@120 273 | _ =>
adamc@120 274 case t of
adamc@185 275 L'.TFfi (m, x) => ((L'.EFfiApp (m, fk2s fk ^ "ify" ^ capitalize x, [e]), loc), fm)
adamc@200 276
adamc@179 277 | L'.TRecord [] => ((L'.EPrim (Prim.String ""), loc), fm)
adamc@200 278 | L'.TRecord ((x, t) :: xts) =>
adamc@200 279 let
adamc@200 280 val (se, fm) = fooify fm ((L'.EField (e, x), loc), t)
adamc@200 281 in
adamc@200 282 foldl (fn ((x, t), (se, fm)) =>
adamc@200 283 let
adamc@200 284 val (se', fm) = fooify fm ((L'.EField (e, x), loc), t)
adamc@200 285 in
adamc@200 286 ((L'.EStrcat (se,
adamc@200 287 (L'.EStrcat ((L'.EPrim (Prim.String "/"), loc),
adamc@200 288 se'), loc)), loc),
adamc@200 289 fm)
adamc@200 290 end) (se, fm) xts
adamc@200 291 end
adamc@111 292
adamc@196 293 | L'.TDatatype (i, ref (dk, _)) =>
adamc@179 294 let
adamc@179 295 fun makeDecl n fm =
adamc@179 296 let
adamc@193 297 val (x, _, xncs) = Env.lookupDatatype env i
adamc@179 298
adamc@179 299 val (branches, fm) =
adamc@179 300 ListUtil.foldlMap
adamc@179 301 (fn ((x, n, to), fm) =>
adamc@179 302 case to of
adamc@179 303 NONE =>
adamc@188 304 (((L'.PCon (dk, L'.PConVar n, NONE), loc),
adamc@179 305 (L'.EPrim (Prim.String x), loc)),
adamc@179 306 fm)
adamc@179 307 | SOME t =>
adamc@179 308 let
adamc@182 309 val t = monoType env t
adamc@182 310 val (arg, fm) = fooify fm ((L'.ERel 0, loc), t)
adamc@179 311 in
adamc@188 312 (((L'.PCon (dk, L'.PConVar n, SOME (L'.PVar ("a", t), loc)), loc),
adamc@179 313 (L'.EStrcat ((L'.EPrim (Prim.String (x ^ "/")), loc),
adamc@179 314 arg), loc)),
adamc@179 315 fm)
adamc@179 316 end)
adamc@179 317 fm xncs
adamc@179 318
adamc@179 319 val dom = tAll
adamc@179 320 val ran = (L'.TFfi ("Basis", "string"), loc)
adamc@179 321 in
adamc@179 322 ((L'.DValRec [(fk2s fk ^ "ify_" ^ x,
adamc@179 323 n,
adamc@179 324 (L'.TFun (dom, ran), loc),
adamc@179 325 (L'.EAbs ("x",
adamc@179 326 dom,
adamc@179 327 ran,
adamc@179 328 (L'.ECase ((L'.ERel 0, loc),
adamc@179 329 branches,
adamc@182 330 {disc = dom,
adamc@182 331 result = ran}), loc)), loc),
adamc@179 332 "")], loc),
adamc@179 333 fm)
adamc@179 334 end
adamc@179 335
adamc@179 336 val (fm, n) = Fm.lookup fm fk i makeDecl
adamc@179 337 in
adamc@179 338 ((L'.EApp ((L'.ENamed n, loc), e), loc), fm)
adamc@179 339 end
adamc@164 340
adamc@120 341 | _ => (E.errorAt loc "Don't know how to encode attribute type";
adamc@120 342 Print.eprefaces' [("Type", MonoPrint.p_typ MonoEnv.empty tAll)];
adamc@179 343 (dummyExp, fm))
adamc@120 344 in
adamc@120 345 fooify
adamc@120 346 end
adamc@120 347
adamc@179 348 val attrifyExp = fooifyExp Attr
adamc@179 349 val urlifyExp = fooifyExp Url
adamc@105 350
adamc@143 351 datatype 'a failable_search =
adamc@143 352 Found of 'a
adamc@143 353 | NotFound
adamc@143 354 | Error
adamc@143 355
adamc@153 356 structure St :> sig
adamc@153 357 type t
adamc@153 358
adamc@153 359 val empty : t
adamc@153 360
adamc@153 361 val radioGroup : t -> string option
adamc@153 362 val setRadioGroup : t * string -> t
adamc@153 363 end = struct
adamc@153 364
adamc@153 365 type t = {
adamc@153 366 radioGroup : string option
adamc@153 367 }
adamc@153 368
adamc@153 369 val empty = {radioGroup = NONE}
adamc@153 370
adamc@153 371 fun radioGroup (t : t) = #radioGroup t
adamc@153 372
adamc@153 373 fun setRadioGroup (t : t, x) = {radioGroup = SOME x}
adamc@153 374
adamc@153 375 end
adamc@153 376
adamc@186 377 fun monoPatCon env pc =
adamc@178 378 case pc of
adamc@178 379 L.PConVar n => L'.PConVar n
adamc@188 380 | L.PConFfi {mod = m, datatyp, con, arg, ...} => L'.PConFfi {mod = m, datatyp = datatyp, con = con,
adamc@188 381 arg = Option.map (monoType env) arg}
adamc@178 382
adamc@193 383 val dummyPat = (L'.PPrim (Prim.Int 0), ErrorMsg.dummySpan)
adamc@193 384
adamc@193 385 fun monoPat env (all as (p, loc)) =
adamc@193 386 let
adamc@193 387 fun poly () =
adamc@193 388 (E.errorAt loc "Unsupported pattern";
adamc@193 389 Print.eprefaces' [("Pattern", CorePrint.p_pat env all)];
adamc@193 390 dummyPat)
adamc@193 391 in
adamc@193 392 case p of
adamc@193 393 L.PWild => (L'.PWild, loc)
adamc@193 394 | L.PVar (x, t) => (L'.PVar (x, monoType env t), loc)
adamc@193 395 | L.PPrim p => (L'.PPrim p, loc)
adamc@193 396 | L.PCon (dk, pc, [], po) => (L'.PCon (dk, monoPatCon env pc, Option.map (monoPat env) po), loc)
adamc@193 397 | L.PCon _ => poly ()
adamc@193 398 | L.PRecord xps => (L'.PRecord (map (fn (x, p, t) => (x, monoPat env p, monoType env t)) xps), loc)
adamc@193 399 end
adamc@178 400
adamc@252 401 fun strcat loc es =
adamc@252 402 case es of
adamc@252 403 [] => (L'.EPrim (Prim.String ""), loc)
adamc@252 404 | [e] => e
adamc@252 405 | _ =>
adamc@252 406 let
adamc@252 407 val e2 = List.last es
adamc@252 408 val es = List.take (es, length es - 1)
adamc@252 409 val e1 = List.last es
adamc@252 410 val es = List.take (es, length es - 1)
adamc@252 411 in
adamc@252 412 foldr (fn (e, e') => (L'.EStrcat (e, e'), loc))
adamc@252 413 (L'.EStrcat (e1, e2), loc) es
adamc@252 414 end
adamc@252 415
adamc@252 416 fun strcatComma loc es =
adamc@252 417 case es of
adamc@252 418 [] => (L'.EPrim (Prim.String ""), loc)
adamc@252 419 | [e] => e
adamc@252 420 | _ =>
adamc@252 421 let
adamc@252 422 val e1 = List.last es
adamc@252 423 val es = List.take (es, length es - 1)
adamc@252 424 in
adamc@252 425 foldr (fn (e, e') =>
adamc@252 426 case e of
adamc@252 427 (L'.EPrim (Prim.String ""), _) => e'
adamc@252 428 | _ =>
adamc@252 429 (L'.EStrcat (e,
adamc@252 430 (L'.EStrcat ((L'.EPrim (Prim.String ", "), loc), e'), loc)), loc))
adamc@252 431 e1 es
adamc@252 432 end
adamc@252 433
adamc@252 434 fun strcatR loc e xs = strcatComma loc (map (fn (x, _) => (L'.EField (e, x), loc)) xs)
adamc@252 435
adamc@179 436 fun monoExp (env, st, fm) (all as (e, loc)) =
adamc@25 437 let
adamc@25 438 fun poly () =
adamc@25 439 (E.errorAt loc "Unsupported expression";
adamc@25 440 Print.eprefaces' [("Expression", CorePrint.p_exp env all)];
adamc@179 441 (dummyExp, fm))
adamc@25 442 in
adamc@25 443 case e of
adamc@179 444 L.EPrim p => ((L'.EPrim p, loc), fm)
adamc@179 445 | L.ERel n => ((L'.ERel n, loc), fm)
adamc@179 446 | L.ENamed n => ((L'.ENamed n, loc), fm)
adamc@193 447 | L.ECon (dk, pc, [], eo) =>
adamc@193 448 let
adamc@179 449 val (eo, fm) =
adamc@179 450 case eo of
adamc@179 451 NONE => (NONE, fm)
adamc@179 452 | SOME e =>
adamc@179 453 let
adamc@179 454 val (e, fm) = monoExp (env, st, fm) e
adamc@179 455 in
adamc@179 456 (SOME e, fm)
adamc@179 457 end
adamc@179 458 in
adamc@188 459 ((L'.ECon (dk, monoPatCon env pc, eo), loc), fm)
adamc@193 460 end
adamc@193 461 | L.ECon _ => poly ()
adamc@94 462
adamc@251 463 | L.ECApp ((L.EFfi ("Basis", "return"), _), t) =>
adamc@252 464 let
adamc@252 465 val t = monoType env t
adamc@252 466 in
adamc@252 467 ((L'.EAbs ("x", t,
adamc@252 468 (L'.TFun ((L'.TRecord [], loc), t), loc),
adamc@252 469 (L'.EAbs ("_", (L'.TRecord [], loc), t,
adamc@252 470 (L'.ERel 1, loc)), loc)), loc), fm)
adamc@252 471 end
adamc@251 472 | L.ECApp ((L.ECApp ((L.EFfi ("Basis", "bind"), _), t1), _), t2) =>
adamc@251 473 let
adamc@251 474 val t1 = monoType env t1
adamc@251 475 val t2 = monoType env t2
adamc@251 476 val un = (L'.TRecord [], loc)
adamc@252 477 val mt1 = (L'.TFun (un, t1), loc)
adamc@252 478 val mt2 = (L'.TFun (un, t2), loc)
adamc@251 479 in
adamc@252 480 ((L'.EAbs ("m1", mt1, (L'.TFun (mt1, (L'.TFun (mt2, (L'.TFun (un, un), loc)), loc)), loc),
adamc@252 481 (L'.EAbs ("m2", mt2, (L'.TFun (un, un), loc),
adamc@252 482 (L'.EAbs ("_", un, un,
adamc@252 483 (L'.ELet ("r", t1, (L'.EApp ((L'.ERel 2, loc),
adamc@252 484 (L'.ERecord [], loc)), loc),
adamc@252 485 (L'.EApp (
adamc@252 486 (L'.EApp ((L'.ERel 2, loc), (L'.ERel 0, loc)), loc),
adamc@252 487 (L'.ERecord [], loc)),
adamc@252 488 loc)), loc)), loc)), loc)), loc),
adamc@251 489 fm)
adamc@251 490 end
adamc@251 491
adamc@252 492 | L.ECApp (
adamc@252 493 (L.ECApp (
adamc@252 494 (L.ECApp ((L.EFfi ("Basis", "query"), _), (L.CRecord (_, tables), _)), _),
adamc@252 495 exps), _),
adamc@252 496 state) =>
adamc@252 497 (case monoType env (L.TRecord exps, loc) of
adamc@252 498 (L'.TRecord exps, _) =>
adamc@252 499 let
adamc@252 500 val tables = map (fn ((L.CName x, _), xts) =>
adamc@252 501 (case monoType env (L.TRecord xts, loc) of
adamc@252 502 (L'.TRecord xts, _) => SOME (x, xts)
adamc@252 503 | _ => NONE)
adamc@252 504 | _ => NONE) tables
adamc@252 505 in
adamc@252 506 if List.exists (fn x => x = NONE) tables then
adamc@252 507 poly ()
adamc@252 508 else
adamc@252 509 let
adamc@252 510 val tables = List.mapPartial (fn x => x) tables
adamc@252 511 val state = monoType env state
adamc@252 512 val s = (L'.TFfi ("Basis", "string"), loc)
adamc@252 513 val un = (L'.TRecord [], loc)
adamc@252 514
adamc@252 515 val rt = exps @ map (fn (x, xts) => (x, (L'.TRecord xts, loc))) tables
adamc@252 516 val ft = (L'.TFun ((L'.TRecord rt, loc),
adamc@252 517 (L'.TFun (state,
adamc@252 518 (L'.TFun (un, state), loc)),
adamc@252 519 loc)), loc)
adamc@252 520
adamc@252 521 val body' = (L'.EAbs ("r", (L'.TRecord rt, loc),
adamc@252 522 (L'.TFun (state, state), loc),
adamc@252 523 (L'.EAbs ("acc", state, state,
adamc@252 524 (L'.EApp (
adamc@252 525 (L'.EApp (
adamc@252 526 (L'.EApp ((L'.ERel 4, loc),
adamc@252 527 (L'.ERel 1, loc)), loc),
adamc@252 528 (L'.ERel 0, loc)), loc),
adamc@252 529 (L'.ERecord [], loc)), loc)), loc)), loc)
adamc@252 530
adamc@252 531 val body = (L'.EQuery {exps = exps,
adamc@252 532 tables = tables,
adamc@252 533 state = state,
adamc@252 534 query = (L'.ERel 3, loc),
adamc@252 535 body = body',
adamc@252 536 initial = (L'.ERel 1, loc)},
adamc@252 537 loc)
adamc@252 538 in
adamc@252 539 ((L'.EAbs ("q", s, (L'.TFun (ft, (L'.TFun (state, (L'.TFun (un, state), loc)), loc)), loc),
adamc@252 540 (L'.EAbs ("f", ft, (L'.TFun (state, (L'.TFun (un, state), loc)), loc),
adamc@252 541 (L'.EAbs ("i", state, (L'.TFun (un, state), loc),
adamc@252 542 (L'.EAbs ("_", un, state,
adamc@252 543 body), loc)), loc)), loc)), loc), fm)
adamc@252 544 end
adamc@252 545 end
adamc@252 546 | _ => poly ())
adamc@252 547
adamc@252 548 | L.ECApp ((L.ECApp ((L.ECApp ((L.EFfi ("Basis", "sql_query"), _), _), _), _), _), _) =>
adamc@252 549 let
adamc@252 550 fun sc s = (L'.EPrim (Prim.String s), loc)
adamc@252 551 val s = (L'.TFfi ("Basis", "string"), loc)
adamc@252 552 fun gf s = (L'.EField ((L'.ERel 0, loc), s), loc)
adamc@252 553 in
adamc@252 554 ((L'.EAbs ("r",
adamc@252 555 (L'.TRecord [("Rows", s), ("OrderBy", s), ("Limit", s), ("Offset", s)], loc),
adamc@252 556 s,
adamc@252 557 strcat loc [gf "Rows",
adamc@252 558 gf "OrderBy",
adamc@252 559 gf "Limit",
adamc@252 560 gf "Offset"]), loc), fm)
adamc@252 561 end
adamc@252 562
adamc@252 563 | L.ECApp (
adamc@252 564 (L.ECApp (
adamc@252 565 (L.ECApp (
adamc@252 566 (L.ECApp (
adamc@252 567 (L.EFfi ("Basis", "sql_query1"), _),
adamc@252 568 (L.CRecord (_, tables), _)), _),
adamc@252 569 (L.CRecord (_, grouped), _)), _),
adamc@252 570 (L.CRecord (_, stables), _)), _),
adamc@252 571 sexps) =>
adamc@252 572 let
adamc@252 573 fun sc s = (L'.EPrim (Prim.String s), loc)
adamc@252 574 val s = (L'.TFfi ("Basis", "string"), loc)
adamc@252 575 val un = (L'.TRecord [], loc)
adamc@252 576 fun gf s = (L'.EField ((L'.ERel 0, loc), s), loc)
adamc@252 577
adamc@252 578 fun doTables tables =
adamc@252 579 let
adamc@252 580 val tables = map (fn ((L.CName x, _), xts) =>
adamc@252 581 (case monoType env (L.TRecord xts, loc) of
adamc@252 582 (L'.TRecord xts, _) => SOME (x, xts)
adamc@252 583 | _ => NONE)
adamc@252 584 | _ => NONE) tables
adamc@252 585 in
adamc@252 586 if List.exists (fn x => x = NONE) tables then
adamc@252 587 NONE
adamc@252 588 else
adamc@252 589 SOME (List.mapPartial (fn x => x) tables)
adamc@252 590 end
adamc@252 591 in
adamc@252 592 case (doTables tables, doTables grouped, doTables stables, monoType env (L.TRecord sexps, loc)) of
adamc@252 593 (SOME tables, SOME grouped, SOME stables, (L'.TRecord sexps, _)) =>
adamc@252 594 ((L'.EAbs ("r",
adamc@252 595 (L'.TRecord [("From", (L'.TRecord (map (fn (x, _) => (x, s)) tables), loc)),
adamc@252 596 ("Where", s),
adamc@252 597 ("GroupBy", un),
adamc@252 598 ("Having", s),
adamc@252 599 ("SelectFields", un),
adamc@252 600 ("SelectExps", (L'.TRecord (map (fn (x, _) => (x, s)) sexps), loc))],
adamc@252 601 loc),
adamc@252 602 s,
adamc@252 603 strcat loc [sc "SELECT ",
adamc@252 604 strcatR loc (gf "SelectExps") sexps,
adamc@252 605 case sexps of
adamc@252 606 [] => sc ""
adamc@252 607 | _ => sc ", ",
adamc@252 608 strcatComma loc (map (fn (x, xts) =>
adamc@252 609 strcatComma loc
adamc@252 610 (map (fn (x', _) =>
adamc@252 611 sc (x ^ "." ^ x'))
adamc@252 612 xts)) stables),
adamc@252 613 sc " FROM ",
adamc@252 614 strcatComma loc (map (fn (x, _) => strcat loc [(L'.EField (gf "From", x), loc),
adamc@253 615 sc (" AS " ^ x)]) tables),
adamc@253 616 sc " WHERE ",
adamc@255 617 gf "Where",
adamc@255 618 if List.all (fn (x, xts) =>
adamc@255 619 case List.find (fn (x', _) => x' = x) grouped of
adamc@255 620 NONE => List.null xts
adamc@255 621 | SOME (_, xts') =>
adamc@255 622 List.all (fn (x, _) =>
adamc@255 623 List.exists (fn (x', _) => x' = x)
adamc@255 624 xts') xts) tables then
adamc@255 625 sc ""
adamc@255 626 else
adamc@255 627 strcat loc [
adamc@255 628 sc " GROUP BY ",
adamc@255 629 strcatComma loc (map (fn (x, xts) =>
adamc@255 630 strcatComma loc
adamc@255 631 (map (fn (x', _) =>
adamc@255 632 sc (x ^ "." ^ x'))
adamc@255 633 xts)) grouped)
adamc@255 634 ]
adamc@252 635 ]), loc),
adamc@252 636 fm)
adamc@252 637 | _ => poly ()
adamc@252 638 end
adamc@252 639
adamc@252 640 | L.ECApp (
adamc@252 641 (L.ECApp (
adamc@252 642 (L.ECApp (
adamc@252 643 (L.ECApp (
adamc@252 644 (L.EFfi ("Basis", "sql_inject"), _),
adamc@252 645 _), _),
adamc@252 646 _), _),
adamc@252 647 _), _),
adamc@252 648 t) =>
adamc@252 649 let
adamc@252 650 val t = monoType env t
adamc@252 651 val s = (L'.TFfi ("Basis", "string"), loc)
adamc@252 652 in
adamc@252 653 ((L'.EAbs ("f", (L'.TFun (t, s), loc), (L'.TFun (t, s), loc),
adamc@252 654 (L'.ERel 0, loc)), loc), fm)
adamc@252 655 end
adamc@252 656
adamc@253 657 | L.EFfi ("Basis", "sql_int") =>
adamc@253 658 ((L'.EAbs ("x", (L'.TFfi ("Basis", "int"), loc), (L'.TFfi ("Basis", "string"), loc),
adamc@253 659 (L'.EFfiApp ("Basis", "sqlifyInt", [(L'.ERel 0, loc)]), loc)), loc),
adamc@253 660 fm)
adamc@253 661 | L.EFfi ("Basis", "sql_float") =>
adamc@253 662 ((L'.EAbs ("x", (L'.TFfi ("Basis", "float"), loc), (L'.TFfi ("Basis", "string"), loc),
adamc@253 663 (L'.EFfiApp ("Basis", "sqlifyFloat", [(L'.ERel 0, loc)]), loc)), loc),
adamc@253 664 fm)
adamc@253 665 | L.EFfi ("Basis", "sql_bool") =>
adamc@253 666 ((L'.EAbs ("x", (L'.TFfi ("Basis", "bool"), loc), (L'.TFfi ("Basis", "string"), loc),
adamc@253 667 (L'.EFfiApp ("Basis", "sqlifyBool", [(L'.ERel 0, loc)]), loc)), loc),
adamc@253 668 fm)
adamc@253 669 | L.EFfi ("Basis", "sql_string") =>
adamc@253 670 ((L'.EAbs ("x", (L'.TFfi ("Basis", "string"), loc), (L'.TFfi ("Basis", "string"), loc),
adamc@253 671 (L'.EFfiApp ("Basis", "sqlifyString", [(L'.ERel 0, loc)]), loc)), loc),
adamc@253 672 fm)
adamc@253 673
adamc@252 674 | L.ECApp ((L.EFfi ("Basis", "sql_subset"), _), _) =>
adamc@252 675 ((L'.ERecord [], loc), fm)
adamc@252 676 | L.ECApp ((L.EFfi ("Basis", "sql_subset_all"), _), _) =>
adamc@252 677 ((L'.ERecord [], loc), fm)
adamc@252 678
adamc@252 679 | L.ECApp ((L.ECApp ((L.EFfi ("Basis", "sql_order_by_Nil"), _), _), _), _) =>
adamc@252 680 ((L'.EPrim (Prim.String ""), loc), fm)
adamc@252 681
adamc@252 682 | L.EFfi ("Basis", "sql_no_limit") =>
adamc@252 683 ((L'.EPrim (Prim.String ""), loc), fm)
adamc@252 684 | L.EFfi ("Basis", "sql_no_offset") =>
adamc@252 685 ((L'.EPrim (Prim.String ""), loc), fm)
adamc@253 686
adamc@253 687 | L.EFfi ("Basis", "sql_eq") =>
adamc@253 688 ((L'.EPrim (Prim.String "="), loc), fm)
adamc@253 689 | L.EFfi ("Basis", "sql_ne") =>
adamc@253 690 ((L'.EPrim (Prim.String "<>"), loc), fm)
adamc@253 691 | L.EFfi ("Basis", "sql_lt") =>
adamc@253 692 ((L'.EPrim (Prim.String "<"), loc), fm)
adamc@253 693 | L.EFfi ("Basis", "sql_le") =>
adamc@253 694 ((L'.EPrim (Prim.String "<="), loc), fm)
adamc@253 695 | L.EFfi ("Basis", "sql_gt") =>
adamc@253 696 ((L'.EPrim (Prim.String ">"), loc), fm)
adamc@253 697 | L.EFfi ("Basis", "sql_ge") =>
adamc@253 698 ((L'.EPrim (Prim.String ">="), loc), fm)
adamc@253 699
adamc@253 700 | L.ECApp (
adamc@253 701 (L.ECApp (
adamc@253 702 (L.ECApp (
adamc@253 703 (L.ECApp (
adamc@254 704 (L.ECApp (
adamc@254 705 (L.ECApp (
adamc@254 706 (L.EFfi ("Basis", "sql_binary"), _),
adamc@254 707 _), _),
adamc@254 708 _), _),
adamc@254 709 _), _),
adamc@254 710 _), _),
adamc@254 711 _), _),
adamc@254 712 _) =>
adamc@254 713 let
adamc@254 714 val s = (L'.TFfi ("Basis", "string"), loc)
adamc@254 715 fun sc s = (L'.EPrim (Prim.String s), loc)
adamc@254 716 in
adamc@254 717 ((L'.EAbs ("c", s, (L'.TFun (s, (L'.TFun (s, s), loc)), loc),
adamc@254 718 (L'.EAbs ("e1", s, (L'.TFun (s, s), loc),
adamc@254 719 (L'.EAbs ("e2", s, s,
adamc@254 720 strcat loc [sc "(",
adamc@254 721 (L'.ERel 1, loc),
adamc@254 722 sc " ",
adamc@254 723 (L'.ERel 2, loc),
adamc@254 724 sc " ",
adamc@254 725 (L'.ERel 0, loc),
adamc@254 726 sc ")"]), loc)), loc)), loc),
adamc@254 727 fm)
adamc@254 728 end
adamc@254 729 | L.EFfi ("Basis", "sql_and") => ((L'.EPrim (Prim.String "AND"), loc), fm)
adamc@254 730 | L.EFfi ("Basis", "sql_or") => ((L'.EPrim (Prim.String "OR"), loc), fm)
adamc@254 731
adamc@254 732 | L.ECApp (
adamc@254 733 (L.ECApp (
adamc@254 734 (L.ECApp (
adamc@254 735 (L.ECApp (
adamc@253 736 (L.EFfi ("Basis", "sql_comparison"), _),
adamc@253 737 _), _),
adamc@253 738 _), _),
adamc@253 739 _), _),
adamc@253 740 _) =>
adamc@253 741 let
adamc@253 742 val s = (L'.TFfi ("Basis", "string"), loc)
adamc@253 743 fun sc s = (L'.EPrim (Prim.String s), loc)
adamc@253 744 in
adamc@253 745 ((L'.EAbs ("c", s, (L'.TFun (s, (L'.TFun (s, s), loc)), loc),
adamc@253 746 (L'.EAbs ("e1", s, (L'.TFun (s, s), loc),
adamc@253 747 (L'.EAbs ("e2", s, s,
adamc@254 748 strcat loc [sc "(",
adamc@254 749 (L'.ERel 1, loc),
adamc@253 750 sc " ",
adamc@253 751 (L'.ERel 2, loc),
adamc@253 752 sc " ",
adamc@254 753 (L'.ERel 0, loc),
adamc@254 754 sc ")"]), loc)), loc)), loc),
adamc@253 755 fm)
adamc@253 756 end
adamc@253 757
adamc@253 758 | L.ECApp (
adamc@253 759 (L.ECApp (
adamc@253 760 (L.ECApp (
adamc@253 761 (L.ECApp (
adamc@253 762 (L.ECApp (
adamc@253 763 (L.ECApp (
adamc@253 764 (L.ECApp (
adamc@253 765 (L.EFfi ("Basis", "sql_field"), _),
adamc@253 766 _), _),
adamc@253 767 _), _),
adamc@253 768 _), _),
adamc@253 769 _), _),
adamc@253 770 _), _),
adamc@253 771 (L.CName tab, _)), _),
adamc@253 772 (L.CName field, _)) => ((L'.EPrim (Prim.String (tab ^ "." ^ field)), loc), fm)
adamc@252 773
adamc@139 774 | L.EApp (
adamc@139 775 (L.ECApp (
adamc@141 776 (L.ECApp ((L.EFfi ("Basis", "cdata"), _), _), _),
adamc@139 777 _), _),
adamc@179 778 se) =>
adamc@179 779 let
adamc@179 780 val (se, fm) = monoExp (env, st, fm) se
adamc@179 781 in
adamc@179 782 ((L'.EFfiApp ("Basis", "htmlifyString", [se]), loc), fm)
adamc@179 783 end
adamc@179 784
adamc@95 785 | L.EApp (
adamc@95 786 (L.EApp (
adamc@95 787 (L.ECApp (
adamc@95 788 (L.ECApp (
adamc@95 789 (L.ECApp (
adamc@139 790 (L.ECApp (
adamc@140 791 (L.EFfi ("Basis", "join"),
adamc@139 792 _), _), _),
adamc@139 793 _), _),
adamc@95 794 _), _),
adamc@95 795 _), _),
adamc@95 796 xml1), _),
adamc@179 797 xml2) =>
adamc@179 798 let
adamc@179 799 val (xml1, fm) = monoExp (env, st, fm) xml1
adamc@179 800 val (xml2, fm) = monoExp (env, st, fm) xml2
adamc@179 801 in
adamc@179 802 ((L'.EStrcat (xml1, xml2), loc), fm)
adamc@179 803 end
adamc@95 804
adamc@95 805 | L.EApp (
adamc@95 806 (L.EApp (
adamc@104 807 (L.EApp (
adamc@95 808 (L.ECApp (
adamc@104 809 (L.ECApp (
adamc@104 810 (L.ECApp (
adamc@104 811 (L.ECApp (
adamc@139 812 (L.ECApp (
adamc@139 813 (L.ECApp (
adamc@139 814 (L.ECApp (
adamc@139 815 (L.ECApp (
adamc@139 816 (L.EFfi ("Basis", "tag"),
adamc@139 817 _), _), _), _), _), _), _), _), _), _), _), _), _), _), _), _), _),
adamc@104 818 attrs), _),
adamc@95 819 tag), _),
adamc@95 820 xml) =>
adamc@95 821 let
adamc@140 822 fun getTag' (e, _) =
adamc@140 823 case e of
adamc@143 824 L.EFfi ("Basis", tag) => (tag, [])
adamc@143 825 | L.ECApp (e, t) => let
adamc@143 826 val (tag, ts) = getTag' e
adamc@143 827 in
adamc@143 828 (tag, ts @ [t])
adamc@143 829 end
adamc@140 830 | _ => (E.errorAt loc "Non-constant XML tag";
adamc@140 831 Print.eprefaces' [("Expression", CorePrint.p_exp env tag)];
adamc@143 832 ("", []))
adamc@140 833
adamc@95 834 fun getTag (e, _) =
adamc@95 835 case e of
adamc@143 836 L.EFfiApp ("Basis", tag, [(L.ERecord [], _)]) => (tag, [])
adamc@140 837 | L.EApp (e, (L.ERecord [], _)) => getTag' e
adamc@95 838 | _ => (E.errorAt loc "Non-constant XML tag";
adamc@95 839 Print.eprefaces' [("Expression", CorePrint.p_exp env tag)];
adamc@143 840 ("", []))
adamc@95 841
adamc@143 842 val (tag, targs) = getTag tag
adamc@95 843
adamc@179 844 val (attrs, fm) = monoExp (env, st, fm) attrs
adamc@104 845
adamc@143 846 fun tagStart tag =
adamc@104 847 case #1 attrs of
adamc@104 848 L'.ERecord xes =>
adamc@104 849 let
adamc@104 850 fun lowercaseFirst "" = ""
adamc@143 851 | lowercaseFirst s = str (Char.toLower (String.sub (s, 0)))
adamc@143 852 ^ String.extract (s, 1, NONE)
adamc@104 853
adamc@104 854 val s = (L'.EPrim (Prim.String (String.concat ["<", tag])), loc)
adamc@104 855 in
adamc@179 856 foldl (fn ((x, e, t), (s, fm)) =>
adamc@104 857 let
adamc@104 858 val xp = " " ^ lowercaseFirst x ^ "=\""
adamc@120 859
adamc@120 860 val fooify =
adamc@120 861 case x of
adamc@185 862 "Href" => urlifyExp
adamc@185 863 | "Link" => urlifyExp
adamc@143 864 | "Action" => urlifyExp
adamc@120 865 | _ => attrifyExp
adamc@179 866
adamc@179 867 val (e, fm) = fooify env fm (e, t)
adamc@104 868 in
adamc@179 869 ((L'.EStrcat (s,
adamc@179 870 (L'.EStrcat ((L'.EPrim (Prim.String xp), loc),
adamc@179 871 (L'.EStrcat (e,
adamc@179 872 (L'.EPrim (Prim.String "\""),
adamc@179 873 loc)),
adamc@179 874 loc)),
adamc@179 875 loc)), loc),
adamc@179 876 fm)
adamc@104 877 end)
adamc@179 878 (s, fm) xes
adamc@104 879 end
adamc@143 880 | _ => raise Fail "Non-record attributes!"
adamc@104 881
adamc@143 882 fun input typ =
adamc@143 883 case targs of
adamc@155 884 [_, (L.CName name, _)] =>
adamc@179 885 let
adamc@179 886 val (ts, fm) = tagStart "input"
adamc@179 887 in
adamc@179 888 ((L'.EStrcat (ts,
adamc@179 889 (L'.EPrim (Prim.String (" type=\"" ^ typ ^ "\" name=\"" ^ name ^ "\"/>")),
adamc@179 890 loc)), loc), fm)
adamc@179 891 end
adamc@143 892 | _ => (Print.prefaces "Targs" (map (fn t => ("T", CorePrint.p_con env t)) targs);
adamc@153 893 raise Fail "No name passed to input tag")
adamc@104 894
adamc@152 895 fun normal (tag, extra) =
adamc@143 896 let
adamc@179 897 val (tagStart, fm) = tagStart tag
adamc@152 898 val tagStart = case extra of
adamc@152 899 NONE => tagStart
adamc@152 900 | SOME extra => (L'.EStrcat (tagStart, extra), loc)
adamc@152 901
adamc@143 902 fun normal () =
adamc@179 903 let
adamc@179 904 val (xml, fm) = monoExp (env, st, fm) xml
adamc@179 905 in
adamc@179 906 ((L'.EStrcat ((L'.EStrcat (tagStart, (L'.EPrim (Prim.String ">"), loc)), loc),
adamc@179 907 (L'.EStrcat (xml,
adamc@179 908 (L'.EPrim (Prim.String (String.concat ["</", tag, ">"])),
adamc@179 909 loc)), loc)),
adamc@179 910 loc),
adamc@179 911 fm)
adamc@179 912 end
adamc@143 913 in
adamc@143 914 case xml of
adamc@143 915 (L.EApp ((L.ECApp (
adamc@143 916 (L.ECApp ((L.EFfi ("Basis", "cdata"), _),
adamc@143 917 _), _),
adamc@143 918 _), _),
adamc@143 919 (L.EPrim (Prim.String s), _)), _) =>
adamc@143 920 if CharVector.all Char.isSpace s then
adamc@179 921 ((L'.EStrcat (tagStart, (L'.EPrim (Prim.String "/>"), loc)), loc), fm)
adamc@143 922 else
adamc@143 923 normal ()
adamc@143 924 | _ => normal ()
adamc@143 925 end
adamc@152 926 in
adamc@152 927 case tag of
adamc@179 928 "submit" => ((L'.EPrim (Prim.String "<input type=\"submit\"/>"), loc), fm)
adamc@152 929
adamc@152 930 | "textbox" =>
adamc@152 931 (case targs of
adamc@152 932 [_, (L.CName name, _)] =>
adamc@179 933 let
adamc@179 934 val (ts, fm) = tagStart "input"
adamc@179 935 in
adamc@179 936 ((L'.EStrcat (ts,
adamc@179 937 (L'.EPrim (Prim.String (" name=\"" ^ name ^ "\"/>")),
adamc@179 938 loc)), loc), fm)
adamc@179 939 end
adamc@152 940 | _ => (Print.prefaces "Targs" (map (fn t => ("T", CorePrint.p_con env t)) targs);
adamc@153 941 raise Fail "No name passed to textarea tag"))
adamc@155 942 | "password" => input "password"
adamc@152 943 | "ltextarea" =>
adamc@152 944 (case targs of
adamc@152 945 [_, (L.CName name, _)] =>
adamc@179 946 let
adamc@179 947 val (ts, fm) = tagStart "textarea"
adamc@179 948 val (xml, fm) = monoExp (env, st, fm) xml
adamc@179 949 in
adamc@179 950 ((L'.EStrcat ((L'.EStrcat (ts,
adamc@179 951 (L'.EPrim (Prim.String (" name=\"" ^ name ^ "\">")), loc)), loc),
adamc@179 952 (L'.EStrcat (xml,
adamc@179 953 (L'.EPrim (Prim.String "</textarea>"),
adamc@179 954 loc)), loc)),
adamc@179 955 loc), fm)
adamc@179 956 end
adamc@152 957 | _ => (Print.prefaces "Targs" (map (fn t => ("T", CorePrint.p_con env t)) targs);
adamc@153 958 raise Fail "No name passed to ltextarea tag"))
adamc@153 959
adamc@190 960 | "checkbox" => input "checkbox"
adamc@190 961
adamc@153 962 | "radio" =>
adamc@153 963 (case targs of
adamc@153 964 [_, (L.CName name, _)] =>
adamc@179 965 monoExp (env, St.setRadioGroup (st, name), fm) xml
adamc@153 966 | _ => (Print.prefaces "Targs" (map (fn t => ("T", CorePrint.p_con env t)) targs);
adamc@153 967 raise Fail "No name passed to radio tag"))
adamc@153 968 | "radioOption" =>
adamc@153 969 (case St.radioGroup st of
adamc@153 970 NONE => raise Fail "No name for radioGroup"
adamc@153 971 | SOME name =>
adamc@153 972 normal ("input",
adamc@153 973 SOME (L'.EPrim (Prim.String (" type=\"radio\" name=\"" ^ name ^ "\"")), loc)))
adamc@152 974
adamc@154 975 | "lselect" =>
adamc@154 976 (case targs of
adamc@154 977 [_, (L.CName name, _)] =>
adamc@179 978 let
adamc@179 979 val (ts, fm) = tagStart "select"
adamc@179 980 val (xml, fm) = monoExp (env, st, fm) xml
adamc@179 981 in
adamc@179 982 ((L'.EStrcat ((L'.EStrcat (ts,
adamc@179 983 (L'.EPrim (Prim.String (" name=\"" ^ name ^ "\">")), loc)), loc),
adamc@179 984 (L'.EStrcat (xml,
adamc@179 985 (L'.EPrim (Prim.String "</select>"),
adamc@179 986 loc)), loc)),
adamc@179 987 loc),
adamc@179 988 fm)
adamc@179 989 end
adamc@154 990 | _ => (Print.prefaces "Targs" (map (fn t => ("T", CorePrint.p_con env t)) targs);
adamc@154 991 raise Fail "No name passed to lselect tag"))
adamc@154 992
adamc@154 993 | "loption" => normal ("option", NONE)
adamc@154 994
adamc@152 995 | _ => normal (tag, NONE)
adamc@95 996 end
adamc@94 997
adamc@141 998 | L.EApp ((L.ECApp (
adamc@141 999 (L.ECApp ((L.EFfi ("Basis", "lform"), _), _), _),
adamc@141 1000 _), _),
adamc@141 1001 xml) =>
adamc@143 1002 let
adamc@143 1003 fun findSubmit (e, _) =
adamc@143 1004 case e of
adamc@143 1005 L.EApp (
adamc@143 1006 (L.EApp (
adamc@143 1007 (L.ECApp (
adamc@143 1008 (L.ECApp (
adamc@143 1009 (L.ECApp (
adamc@143 1010 (L.ECApp (
adamc@143 1011 (L.EFfi ("Basis", "join"),
adamc@143 1012 _), _), _),
adamc@143 1013 _), _),
adamc@143 1014 _), _),
adamc@143 1015 _), _),
adamc@143 1016 xml1), _),
adamc@143 1017 xml2) => (case findSubmit xml1 of
adamc@143 1018 Error => Error
adamc@143 1019 | NotFound => findSubmit xml2
adamc@143 1020 | Found e =>
adamc@143 1021 case findSubmit xml2 of
adamc@143 1022 NotFound => Found e
adamc@143 1023 | _ => Error)
adamc@143 1024 | L.EApp (
adamc@143 1025 (L.EApp (
adamc@143 1026 (L.EApp (
adamc@143 1027 (L.ECApp (
adamc@143 1028 (L.ECApp (
adamc@143 1029 (L.ECApp (
adamc@143 1030 (L.ECApp (
adamc@143 1031 (L.ECApp (
adamc@143 1032 (L.ECApp (
adamc@143 1033 (L.ECApp (
adamc@143 1034 (L.ECApp (
adamc@143 1035 (L.EFfi ("Basis", "tag"),
adamc@143 1036 _), _), _), _), _), _), _), _), _), _), _), _), _), _), _), _), _),
adamc@143 1037 attrs), _),
adamc@143 1038 _), _),
adamc@143 1039 xml) =>
adamc@143 1040 (case #1 attrs of
adamc@143 1041 L.ERecord xes =>
adamc@143 1042 (case ListUtil.search (fn ((L.CName "Action", _), e, t) => SOME (e, t)
adamc@143 1043 | _ => NONE) xes of
adamc@143 1044 NONE => findSubmit xml
adamc@143 1045 | SOME et =>
adamc@143 1046 case findSubmit xml of
adamc@143 1047 NotFound => Found et
adamc@143 1048 | _ => Error)
adamc@143 1049 | _ => findSubmit xml)
adamc@143 1050 | _ => NotFound
adamc@143 1051
adamc@143 1052 val (action, actionT) = case findSubmit xml of
adamc@143 1053 NotFound => raise Fail "No submit found"
adamc@143 1054 | Error => raise Fail "Not ready for multi-submit lforms yet"
adamc@143 1055 | Found et => et
adamc@143 1056
adamc@143 1057 val actionT = monoType env actionT
adamc@179 1058 val (action, fm) = monoExp (env, st, fm) action
adamc@179 1059 val (action, fm) = urlifyExp env fm (action, actionT)
adamc@179 1060 val (xml, fm) = monoExp (env, st, fm) xml
adamc@143 1061 in
adamc@179 1062 ((L'.EStrcat ((L'.EStrcat ((L'.EPrim (Prim.String "<form action=\""), loc),
adamc@179 1063 (L'.EStrcat (action,
adamc@179 1064 (L'.EPrim (Prim.String "\">"), loc)), loc)), loc),
adamc@179 1065 (L'.EStrcat (xml,
adamc@179 1066 (L'.EPrim (Prim.String "</form>"), loc)), loc)), loc),
adamc@179 1067 fm)
adamc@143 1068 end
adamc@141 1069
adamc@148 1070 | L.EApp ((L.ECApp (
adamc@148 1071 (L.ECApp (
adamc@148 1072 (L.ECApp (
adamc@148 1073 (L.ECApp (
adamc@148 1074 (L.EFfi ("Basis", "useMore"), _), _), _),
adamc@148 1075 _), _),
adamc@148 1076 _), _),
adamc@148 1077 _), _),
adamc@179 1078 xml) => monoExp (env, st, fm) xml
adamc@148 1079
adamc@179 1080 | L.EApp (e1, e2) =>
adamc@179 1081 let
adamc@179 1082 val (e1, fm) = monoExp (env, st, fm) e1
adamc@179 1083 val (e2, fm) = monoExp (env, st, fm) e2
adamc@179 1084 in
adamc@179 1085 ((L'.EApp (e1, e2), loc), fm)
adamc@179 1086 end
adamc@26 1087 | L.EAbs (x, dom, ran, e) =>
adamc@179 1088 let
adamc@179 1089 val (e, fm) = monoExp (Env.pushERel env x dom, st, fm) e
adamc@179 1090 in
adamc@179 1091 ((L'.EAbs (x, monoType env dom, monoType env ran, e), loc), fm)
adamc@179 1092 end
adamc@25 1093 | L.ECApp _ => poly ()
adamc@25 1094 | L.ECAbs _ => poly ()
adamc@25 1095
adamc@252 1096 | L.EFfi mx => ((L'.EFfi mx, loc), fm)
adamc@252 1097 | L.EFfiApp (m, x, es) =>
adamc@252 1098 let
adamc@252 1099 val (es, fm) = ListUtil.foldlMap (fn (e, fm) => monoExp (env, st, fm) e) fm es
adamc@252 1100 in
adamc@252 1101 ((L'.EFfiApp (m, x, es), loc), fm)
adamc@252 1102 end
adamc@252 1103
adamc@179 1104 | L.ERecord xes =>
adamc@179 1105 let
adamc@179 1106 val (xes, fm) = ListUtil.foldlMap
adamc@179 1107 (fn ((x, e, t), fm) =>
adamc@179 1108 let
adamc@179 1109 val (e, fm) = monoExp (env, st, fm) e
adamc@179 1110 in
adamc@179 1111 ((monoName env x,
adamc@179 1112 e,
adamc@179 1113 monoType env t), fm)
adamc@179 1114 end) fm xes
adamc@179 1115 in
adamc@179 1116 ((L'.ERecord xes, loc), fm)
adamc@179 1117 end
adamc@179 1118 | L.EField (e, x, _) =>
adamc@179 1119 let
adamc@179 1120 val (e, fm) = monoExp (env, st, fm) e
adamc@179 1121 in
adamc@179 1122 ((L'.EField (e, monoName env x), loc), fm)
adamc@179 1123 end
adamc@149 1124 | L.ECut _ => poly ()
adamc@73 1125 | L.EFold _ => poly ()
adamc@177 1126
adamc@182 1127 | L.ECase (e, pes, {disc, result}) =>
adamc@179 1128 let
adamc@179 1129 val (e, fm) = monoExp (env, st, fm) e
adamc@179 1130 val (pes, fm) = ListUtil.foldlMap
adamc@179 1131 (fn ((p, e), fm) =>
adamc@179 1132 let
adamc@179 1133 val (e, fm) = monoExp (env, st, fm) e
adamc@179 1134 in
adamc@182 1135 ((monoPat env p, e), fm)
adamc@179 1136 end) fm pes
adamc@179 1137 in
adamc@182 1138 ((L'.ECase (e, pes, {disc = monoType env disc, result = monoType env result}), loc), fm)
adamc@179 1139 end
adamc@177 1140
adamc@179 1141 | L.EWrite e =>
adamc@179 1142 let
adamc@179 1143 val (e, fm) = monoExp (env, st, fm) e
adamc@179 1144 in
adamc@252 1145 ((L'.EAbs ("_", (L'.TRecord [], loc), (L'.TRecord [], loc),
adamc@252 1146 (L'.EWrite (liftExpInExp 0 e), loc)), loc), fm)
adamc@179 1147 end
adamc@110 1148
adamc@179 1149 | L.EClosure (n, es) =>
adamc@179 1150 let
adamc@179 1151 val (es, fm) = ListUtil.foldlMap (fn (e, fm) =>
adamc@179 1152 monoExp (env, st, fm) e)
adamc@179 1153 fm es
adamc@179 1154 in
adamc@179 1155 ((L'.EClosure (n, es), loc), fm)
adamc@179 1156 end
adamc@25 1157 end
adamc@25 1158
adamc@179 1159 fun monoDecl (env, fm) (all as (d, loc)) =
adamc@25 1160 let
adamc@25 1161 fun poly () =
adamc@25 1162 (E.errorAt loc "Unsupported declaration";
adamc@25 1163 Print.eprefaces' [("Declaration", CorePrint.p_decl env all)];
adamc@25 1164 NONE)
adamc@25 1165 in
adamc@25 1166 case d of
adamc@25 1167 L.DCon _ => NONE
adamc@193 1168 | L.DDatatype (x, n, [], xncs) =>
adamc@193 1169 let
adamc@196 1170 val env' = Env.declBinds env all
adamc@196 1171 val d = (L'.DDatatype (x, n, map (fn (x, n, to) => (x, n, Option.map (monoType env') to)) xncs), loc)
adamc@164 1172 in
adamc@196 1173 SOME (env', fm, d)
adamc@193 1174 end
adamc@193 1175 | L.DDatatype _ => poly ()
adamc@179 1176 | L.DVal (x, n, t, e, s) =>
adamc@179 1177 let
adamc@179 1178 val (e, fm) = monoExp (env, St.empty, fm) e
adamc@179 1179 in
adamc@179 1180 SOME (Env.pushENamed env x n t NONE s,
adamc@179 1181 fm,
adamc@179 1182 (L'.DVal (x, n, monoType env t, e, s), loc))
adamc@179 1183 end
adamc@128 1184 | L.DValRec vis =>
adamc@128 1185 let
adamc@128 1186 val env = foldl (fn ((x, n, t, e, s), env) => Env.pushENamed env x n t NONE s) env vis
adamc@179 1187
adamc@179 1188 val (vis, fm) = ListUtil.foldlMap
adamc@179 1189 (fn ((x, n, t, e, s), fm) =>
adamc@179 1190 let
adamc@179 1191 val (e, fm) = monoExp (env, St.empty, fm) e
adamc@179 1192 in
adamc@179 1193 ((x, n, monoType env t, e, s), fm)
adamc@179 1194 end)
adamc@179 1195 fm vis
adamc@128 1196 in
adamc@128 1197 SOME (env,
adamc@179 1198 fm,
adamc@179 1199 (L'.DValRec vis, loc))
adamc@128 1200 end
adamc@144 1201 | L.DExport (ek, n) =>
adamc@115 1202 let
adamc@120 1203 val (_, t, _, s) = Env.lookupENamed env n
adamc@120 1204
adamc@120 1205 fun unwind (t, _) =
adamc@120 1206 case t of
adamc@120 1207 L.TFun (dom, ran) => dom :: unwind ran
adamc@120 1208 | _ => []
adamc@120 1209
adamc@120 1210 val ts = map (monoType env) (unwind t)
adamc@115 1211 in
adamc@179 1212 SOME (env, fm, (L'.DExport (ek, s, n, ts), loc))
adamc@115 1213 end
adamc@251 1214 | L.DTable (x, n, _, s) =>
adamc@251 1215 let
adamc@251 1216 val t = (L.CFfi ("Basis", "string"), loc)
adamc@251 1217 val t' = (L'.TFfi ("Basis", "string"), loc)
adamc@251 1218 val e = (L'.EPrim (Prim.String s), loc)
adamc@251 1219 in
adamc@251 1220 SOME (Env.pushENamed env x n t NONE s,
adamc@251 1221 fm,
adamc@251 1222 (L'.DVal (x, n, t', e, s), loc))
adamc@251 1223 end
adamc@25 1224 end
adamc@25 1225
adamc@25 1226 fun monoize env ds =
adamc@25 1227 let
adamc@179 1228 val (_, _, ds) = List.foldl (fn (d, (env, fm, ds)) =>
adamc@179 1229 case monoDecl (env, fm) d of
adamc@179 1230 NONE => (env, fm, ds)
adamc@179 1231 | SOME (env, fm, d) =>
adamc@179 1232 (env,
adamc@179 1233 Fm.enter fm,
adamc@179 1234 d :: Fm.decls fm @ ds))
adamc@179 1235 (env, Fm.empty (CoreUtil.File.maxName ds + 1), []) ds
adamc@25 1236 in
adamc@25 1237 rev ds
adamc@25 1238 end
adamc@25 1239
adamc@25 1240 end