annotate src/core_print.sml @ 339:075b36dbb1a4

Crud supports INSERT
author Adam Chlipala <adamc@hcoop.net>
date Sun, 14 Sep 2008 15:10:04 -0400
parents e976b187d73a
children dfc8c991abd0
rev   line source
adamc@16 1 (* Copyright (c) 2008, Adam Chlipala
adamc@16 2 * All rights reserved.
adamc@16 3 *
adamc@16 4 * Redistribution and use in source and binary forms, with or without
adamc@16 5 * modification, are permitted provided that the following conditions are met:
adamc@16 6 *
adamc@16 7 * - Redistributions of source code must retain the above copyright notice,
adamc@16 8 * this list of conditions and the following disclaimer.
adamc@16 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@16 10 * this list of conditions and the following disclaimer in the documentation
adamc@16 11 * and/or other materials provided with the distribution.
adamc@16 12 * - The names of contributors may not be used to endorse or promote products
adamc@16 13 * derived from this software without specific prior written permission.
adamc@16 14 *
adamc@16 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@16 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@16 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@16 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@16 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@16 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@16 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@16 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@16 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@16 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@16 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@16 26 *)
adamc@16 27
adamc@244 28 (* Pretty-printing core Ur/Web *)
adamc@16 29
adamc@16 30 structure CorePrint :> CORE_PRINT = struct
adamc@16 31
adamc@16 32 open Print.PD
adamc@16 33 open Print
adamc@16 34
adamc@16 35 open Core
adamc@16 36
adamc@16 37 structure E = CoreEnv
adamc@16 38
adamc@16 39 val debug = ref false
adamc@16 40
adamc@16 41 fun p_kind' par (k, _) =
adamc@16 42 case k of
adamc@16 43 KType => string "Type"
adamc@16 44 | KArrow (k1, k2) => parenIf par (box [p_kind' true k1,
adamc@16 45 space,
adamc@16 46 string "->",
adamc@16 47 space,
adamc@16 48 p_kind k2])
adamc@16 49 | KName => string "Name"
adamc@16 50 | KRecord k => box [string "{", p_kind k, string "}"]
adamc@87 51 | KUnit => string "Unit"
adamc@214 52 | KTuple ks => box [string "(",
adamc@214 53 p_list_sep (box [space, string "*", space]) p_kind ks,
adamc@214 54 string ")"]
adamc@16 55
adamc@16 56 and p_kind k = p_kind' false k
adamc@16 57
adamc@16 58 fun p_con' par env (c, _) =
adamc@16 59 case c of
adamc@16 60 TFun (t1, t2) => parenIf par (box [p_con' true env t1,
adamc@16 61 space,
adamc@16 62 string "->",
adamc@16 63 space,
adamc@16 64 p_con env t2])
adamc@16 65 | TCFun (x, k, c) => parenIf par (box [string x,
adamc@16 66 space,
adamc@16 67 string "::",
adamc@16 68 space,
adamc@16 69 p_kind k,
adamc@16 70 space,
adamc@16 71 string "->",
adamc@16 72 space,
adamc@16 73 p_con (E.pushCRel env x k) c])
adamc@16 74 | TRecord (CRecord (_, xcs), _) => box [string "{",
adamc@16 75 p_list (fn (x, c) =>
adamc@20 76 box [p_name env x,
adamc@16 77 space,
adamc@16 78 string ":",
adamc@16 79 space,
adamc@16 80 p_con env c]) xcs,
adamc@16 81 string "}"]
adamc@16 82 | TRecord c => box [string "$",
adamc@16 83 p_con' true env c]
adamc@16 84
adamc@16 85 | CRel n =>
adamc@39 86 ((if !debug then
adamc@39 87 string (#1 (E.lookupCRel env n) ^ "_" ^ Int.toString n)
adamc@39 88 else
adamc@39 89 string (#1 (E.lookupCRel env n)))
adamc@39 90 handle E.UnboundRel _ => string ("UNBOUND_" ^ Int.toString n))
adamc@16 91 | CNamed n =>
adamc@39 92 ((if !debug then
adamc@39 93 string (#1 (E.lookupCNamed env n) ^ "__" ^ Int.toString n)
adamc@39 94 else
adamc@39 95 string (#1 (E.lookupCNamed env n)))
adamc@39 96 handle E.UnboundNamed _ => string ("UNBOUNDN_" ^ Int.toString n))
adamc@48 97 | CFfi (m, x) => box [string "FFI(", string m, string ".", string x, string ")"]
adamc@16 98
adamc@16 99 | CApp (c1, c2) => parenIf par (box [p_con env c1,
adamc@16 100 space,
adamc@16 101 p_con' true env c2])
adamc@16 102 | CAbs (x, k, c) => parenIf par (box [string "fn",
adamc@16 103 space,
adamc@16 104 string x,
adamc@16 105 space,
adamc@16 106 string "::",
adamc@16 107 space,
adamc@16 108 p_kind k,
adamc@16 109 space,
adamc@16 110 string "=>",
adamc@16 111 space,
adamc@16 112 p_con (E.pushCRel env x k) c])
adamc@16 113
adamc@16 114 | CName s => box [string "#", string s]
adamc@16 115
adamc@16 116 | CRecord (k, xcs) =>
adamc@16 117 if !debug then
adamc@16 118 parenIf par (box [string "[",
adamc@16 119 p_list (fn (x, c) =>
adamc@16 120 box [p_con env x,
adamc@16 121 space,
adamc@16 122 string "=",
adamc@16 123 space,
adamc@16 124 p_con env c]) xcs,
adamc@16 125 string "]::",
adamc@16 126 p_kind k])
adamc@16 127 else
adamc@16 128 parenIf par (box [string "[",
adamc@16 129 p_list (fn (x, c) =>
adamc@16 130 box [p_con env x,
adamc@16 131 space,
adamc@16 132 string "=",
adamc@16 133 space,
adamc@16 134 p_con env c]) xcs,
adamc@16 135 string "]"])
adamc@16 136 | CConcat (c1, c2) => parenIf par (box [p_con' true env c1,
adamc@16 137 space,
adamc@16 138 string "++",
adamc@16 139 space,
adamc@16 140 p_con env c2])
adamc@69 141 | CFold _ => string "fold"
adamc@87 142 | CUnit => string "()"
adamc@214 143
adamc@214 144 | CTuple cs => box [string "(",
adamc@214 145 p_list (p_con env) cs,
adamc@214 146 string ")"]
adamc@214 147 | CProj (c, n) => box [p_con env c,
adamc@214 148 string ".",
adamc@214 149 string (Int.toString n)]
adamc@16 150
adamc@16 151 and p_con env = p_con' false env
adamc@16 152
adamc@20 153 and p_name env (all as (c, _)) =
adamc@20 154 case c of
adamc@20 155 CName s => string s
adamc@20 156 | _ => p_con env all
adamc@20 157
adamc@109 158 fun p_enamed env n =
adamc@109 159 (if !debug then
adamc@109 160 string (#1 (E.lookupENamed env n) ^ "__" ^ Int.toString n)
adamc@109 161 else
adamc@109 162 string (#1 (E.lookupENamed env n)))
adamc@109 163 handle E.UnboundNamed _ => string ("UNBOUNDN_" ^ Int.toString n)
adamc@109 164
adamc@177 165 fun p_con_named env n =
adamc@177 166 (if !debug then
adamc@177 167 string (#1 (E.lookupConstructor env n) ^ "__" ^ Int.toString n)
adamc@177 168 else
adamc@177 169 string (#1 (E.lookupConstructor env n)))
adamc@177 170 handle E.UnboundNamed _ => string ("CONSTRUCTOR_" ^ Int.toString n)
adamc@177 171
adamc@177 172 fun p_patCon env pc =
adamc@177 173 case pc of
adamc@177 174 PConVar n => p_con_named env n
adamc@186 175 | PConFfi {mod = m, con, ...} => box [string "FFIC(",
adamc@185 176 string m,
adamc@185 177 string ".",
adamc@185 178 string con,
adamc@185 179 string ")"]
adamc@177 180
adamc@177 181 fun p_pat' par env (p, _) =
adamc@177 182 case p of
adamc@177 183 PWild => string "_"
adamc@182 184 | PVar (s, _) => string s
adamc@177 185 | PPrim p => Prim.p_t p
adamc@192 186 | PCon (_, n, _, NONE) => p_patCon env n
adamc@192 187 | PCon (_, n, _, SOME p) => parenIf par (box [p_patCon env n,
adamc@192 188 space,
adamc@192 189 p_pat' true env p])
adamc@177 190 | PRecord xps =>
adamc@177 191 box [string "{",
adamc@182 192 p_list_sep (box [string ",", space]) (fn (x, p, _) =>
adamc@177 193 box [string x,
adamc@177 194 space,
adamc@177 195 string "=",
adamc@177 196 space,
adamc@177 197 p_pat env p]) xps,
adamc@177 198 string "}"]
adamc@177 199
adamc@177 200 and p_pat x = p_pat' false x
adamc@177 201
adamc@16 202 fun p_exp' par env (e, _) =
adamc@16 203 case e of
adamc@16 204 EPrim p => Prim.p_t p
adamc@16 205 | ERel n =>
adamc@39 206 ((if !debug then
adamc@39 207 string (#1 (E.lookupERel env n) ^ "_" ^ Int.toString n)
adamc@39 208 else
adamc@39 209 string (#1 (E.lookupERel env n)))
adamc@39 210 handle E.UnboundRel _ => string ("UNBOUND_" ^ Int.toString n))
adamc@109 211 | ENamed n => p_enamed env n
adamc@194 212 | ECon (_, pc, ts, NONE) => box [string "[",
adamc@194 213 p_patCon env pc,
adamc@194 214 p_list_sep (box []) (fn t => box [space, string "[", p_con env t, string "]"]) ts,
adamc@194 215 string "]"]
adamc@194 216 | ECon (_, pc, ts, SOME e) => box [string "[",
adamc@193 217 p_patCon env pc,
adamc@193 218 space,
adamc@193 219 p_exp' true env e,
adamc@194 220 p_list_sep (box []) (fn t => box [space, string "[", p_con env t, string "]"]) ts,
adamc@193 221 string "]"]
adamc@48 222 | EFfi (m, x) => box [string "FFI(", string m, string ".", string x, string ")"]
adamc@48 223 | EFfiApp (m, x, es) => box [string "FFI(",
adamc@48 224 string m,
adamc@48 225 string ".",
adamc@48 226 string x,
adamc@48 227 string "(",
adamc@48 228 p_list (p_exp env) es,
adamc@48 229 string "))"]
adamc@16 230 | EApp (e1, e2) => parenIf par (box [p_exp env e1,
adamc@16 231 space,
adamc@16 232 p_exp' true env e2])
adamc@26 233 | EAbs (x, t, _, e) => parenIf par (box [string "fn",
adamc@26 234 space,
adamc@26 235 string x,
adamc@26 236 space,
adamc@26 237 string ":",
adamc@26 238 space,
adamc@26 239 p_con env t,
adamc@26 240 space,
adamc@26 241 string "=>",
adamc@26 242 space,
adamc@26 243 p_exp (E.pushERel env x t) e])
adamc@16 244 | ECApp (e, c) => parenIf par (box [p_exp env e,
adamc@16 245 space,
adamc@16 246 string "[",
adamc@16 247 p_con env c,
adamc@16 248 string "]"])
adamc@16 249 | ECAbs (x, k, e) => parenIf par (box [string "fn",
adamc@16 250 space,
adamc@16 251 string x,
adamc@16 252 space,
adamc@16 253 string "::",
adamc@16 254 space,
adamc@16 255 p_kind k,
adamc@16 256 space,
adamc@16 257 string "=>",
adamc@16 258 space,
adamc@16 259 p_exp (E.pushCRel env x k) e])
adamc@16 260
adamc@16 261 | ERecord xes => box [string "{",
adamc@29 262 p_list (fn (x, e, _) =>
adamc@21 263 box [p_name env x,
adamc@16 264 space,
adamc@16 265 string "=",
adamc@16 266 space,
adamc@16 267 p_exp env e]) xes,
adamc@16 268 string "}"]
adamc@16 269 | EField (e, c, {field, rest}) =>
adamc@16 270 if !debug then
adamc@16 271 box [p_exp' true env e,
adamc@16 272 string ".",
adamc@16 273 p_con' true env c,
adamc@16 274 space,
adamc@16 275 string "[",
adamc@16 276 p_con env field,
adamc@16 277 space,
adamc@16 278 string " in ",
adamc@16 279 space,
adamc@16 280 p_con env rest,
adamc@16 281 string "]"]
adamc@16 282 else
adamc@16 283 box [p_exp' true env e,
adamc@16 284 string ".",
adamc@16 285 p_con' true env c]
adamc@339 286 | EWith (e1, c, e2, {field, rest}) =>
adamc@339 287 parenIf par (if !debug then
adamc@339 288 box [p_exp env e1,
adamc@339 289 space,
adamc@339 290 string "with",
adamc@339 291 space,
adamc@339 292 p_con' true env c,
adamc@339 293 space,
adamc@339 294 string "=",
adamc@339 295 p_exp' true env e2,
adamc@339 296 space,
adamc@339 297 string "[",
adamc@339 298 p_con env field,
adamc@339 299 space,
adamc@339 300 string " in ",
adamc@339 301 space,
adamc@339 302 p_con env rest,
adamc@339 303 string "]"]
adamc@339 304 else
adamc@339 305 box [p_exp env e1,
adamc@339 306 space,
adamc@339 307 string "with",
adamc@339 308 space,
adamc@339 309 p_con' true env c,
adamc@339 310 space,
adamc@339 311 p_exp' true env e2])
adamc@149 312 | ECut (e, c, {field, rest}) =>
adamc@149 313 parenIf par (if !debug then
adamc@149 314 box [p_exp' true env e,
adamc@149 315 space,
adamc@149 316 string "--",
adamc@149 317 space,
adamc@149 318 p_con' true env c,
adamc@149 319 space,
adamc@149 320 string "[",
adamc@149 321 p_con env field,
adamc@149 322 space,
adamc@149 323 string " in ",
adamc@149 324 space,
adamc@149 325 p_con env rest,
adamc@149 326 string "]"]
adamc@149 327 else
adamc@149 328 box [p_exp' true env e,
adamc@149 329 space,
adamc@149 330 string "--",
adamc@149 331 space,
adamc@149 332 p_con' true env c])
adamc@73 333 | EFold _ => string "fold"
adamc@16 334
adamc@288 335 | ECase (e, pes, {disc, result}) =>
adamc@288 336 parenIf par (box [string "case",
adamc@288 337 space,
adamc@288 338 p_exp env e,
adamc@288 339 space,
adamc@288 340 if !debug then
adamc@288 341 box [string "in",
adamc@288 342 space,
adamc@288 343 p_con env disc,
adamc@288 344 space,
adamc@288 345 string "return",
adamc@288 346 space,
adamc@288 347 p_con env result,
adamc@288 348 space]
adamc@288 349 else
adamc@288 350 box [],
adamc@288 351 string "of",
adamc@288 352 space,
adamc@288 353 p_list_sep (box [space, string "|", space])
adamc@288 354 (fn (p, e) => box [p_pat env p,
adamc@288 355 space,
adamc@288 356 string "=>",
adamc@288 357 space,
adamc@288 358 p_exp (E.patBinds env p) e]) pes])
adamc@177 359
adamc@102 360 | EWrite e => box [string "write(",
adamc@102 361 p_exp env e,
adamc@102 362 string ")"]
adamc@102 363
adamc@110 364 | EClosure (n, es) => box [string "CLOSURE(",
adamc@110 365 p_enamed env n,
adamc@110 366 p_list_sep (string "") (fn e => box [string ", ",
adamc@110 367 p_exp env e]) es,
adamc@110 368 string ")"]
adamc@110 369
adamc@16 370 and p_exp env = p_exp' false env
adamc@16 371
adamc@247 372 fun p_named x n =
adamc@247 373 if !debug then
adamc@247 374 box [string x,
adamc@247 375 string "__",
adamc@247 376 string (Int.toString n)]
adamc@247 377 else
adamc@247 378 string x
adamc@247 379
adamc@125 380 fun p_vali env (x, n, t, e, s) =
adamc@125 381 let
adamc@247 382 val xp = p_named x n
adamc@125 383 in
adamc@125 384 box [xp,
adamc@125 385 space,
adamc@125 386 string "as",
adamc@125 387 space,
adamc@125 388 string s,
adamc@125 389 space,
adamc@125 390 string ":",
adamc@125 391 space,
adamc@125 392 p_con env t,
adamc@125 393 space,
adamc@125 394 string "=",
adamc@125 395 space,
adamc@125 396 p_exp env e]
adamc@125 397 end
adamc@125 398
adamc@144 399 fun p_export_kind ck =
adamc@144 400 case ck of
adamc@144 401 Link => string "link"
adamc@144 402 | Action => string "action"
adamc@144 403
adamc@192 404 fun p_datatype env (x, n, xs, cons) =
adamc@163 405 let
adamc@192 406 val k = (KType, ErrorMsg.dummySpan)
adamc@163 407 val env = E.pushCNamed env x n (KType, ErrorMsg.dummySpan) NONE
adamc@192 408 val env = foldl (fn (x, env) => E.pushCRel env x k) env xs
adamc@193 409
adamc@193 410 val xp = if !debug then
adamc@193 411 string (x ^ "__" ^ Int.toString n)
adamc@193 412 else
adamc@193 413 string x
adamc@163 414 in
adamc@163 415 box [string "datatype",
adamc@163 416 space,
adamc@193 417 xp,
adamc@192 418 p_list_sep (box []) (fn x => box [space, string x]) xs,
adamc@163 419 space,
adamc@163 420 string "=",
adamc@163 421 space,
adamc@163 422 p_list_sep (box [space, string "|", space])
adamc@163 423 (fn (x, n, NONE) => if !debug then (string (x ^ "__" ^ Int.toString n))
adamc@163 424 else string x
adamc@193 425 | (x, n, SOME t) => box [if !debug then (string (x ^ "__" ^ Int.toString n))
adamc@163 426 else string x, space, string "of", space, p_con env t])
adamc@163 427 cons]
adamc@163 428 end
adamc@163 429
adamc@125 430 fun p_decl env (dAll as (d, _) : decl) =
adamc@16 431 case d of
adamc@16 432 DCon (x, n, k, c) =>
adamc@16 433 let
adamc@16 434 val xp = if !debug then
adamc@16 435 box [string x,
adamc@16 436 string "__",
adamc@16 437 string (Int.toString n)]
adamc@16 438 else
adamc@16 439 string x
adamc@16 440 in
adamc@16 441 box [string "con",
adamc@16 442 space,
adamc@16 443 xp,
adamc@16 444 space,
adamc@16 445 string "::",
adamc@16 446 space,
adamc@16 447 p_kind k,
adamc@16 448 space,
adamc@16 449 string "=",
adamc@16 450 space,
adamc@16 451 p_con env c]
adamc@16 452 end
adamc@163 453 | DDatatype x => p_datatype env x
adamc@125 454 | DVal vi => box [string "val",
adamc@125 455 space,
adamc@125 456 p_vali env vi]
adamc@125 457 | DValRec vis =>
adamc@16 458 let
adamc@125 459 val env = E.declBinds env dAll
adamc@16 460 in
adamc@16 461 box [string "val",
adamc@16 462 space,
adamc@125 463 string "rec",
adamc@16 464 space,
adamc@125 465 p_list_sep (box [newline, string "and", space]) (p_vali env) vis]
adamc@16 466 end
adamc@144 467 | DExport (ek, n) => box [string "export",
adamc@144 468 space,
adamc@144 469 p_export_kind ek,
adamc@144 470 space,
adamc@144 471 p_enamed env n,
adamc@144 472 space,
adamc@144 473 string "as",
adamc@144 474 space,
adamc@144 475 p_con env (#2 (E.lookupENamed env n))]
adamc@247 476 | DTable (x, n, c, s) => box [string "table",
adamc@247 477 space,
adamc@247 478 p_named x n,
adamc@247 479 space,
adamc@247 480 string "as",
adamc@247 481 space,
adamc@247 482 string s,
adamc@247 483 space,
adamc@247 484 string ":",
adamc@247 485 space,
adamc@247 486 p_con env c]
adamc@338 487 | DSequence (x, n, s) => box [string "sequence",
adamc@338 488 space,
adamc@338 489 p_named x n,
adamc@338 490 space,
adamc@338 491 string "as",
adamc@338 492 space,
adamc@338 493 string s]
adamc@271 494 | DDatabase s => box [string "database",
adamc@271 495 space,
adamc@271 496 string s]
adamc@16 497
adamc@16 498 fun p_file env file =
adamc@16 499 let
adamc@31 500 val (pds, _) = ListUtil.foldlMap (fn (d, env) =>
adamc@31 501 (p_decl env d,
adamc@31 502 E.declBinds env d))
adamc@16 503 env file
adamc@16 504 in
adamc@16 505 p_list_sep newline (fn x => x) pds
adamc@16 506 end
adamc@16 507
adamc@16 508 end