annotate src/core_print.sml @ 338:e976b187d73a

SQL sequences
author Adam Chlipala <adamc@hcoop.net>
date Sun, 14 Sep 2008 11:02:18 -0400
parents 4260ad920c36
children 075b36dbb1a4
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@149 286 | ECut (e, c, {field, rest}) =>
adamc@149 287 parenIf par (if !debug then
adamc@149 288 box [p_exp' true env e,
adamc@149 289 space,
adamc@149 290 string "--",
adamc@149 291 space,
adamc@149 292 p_con' true env c,
adamc@149 293 space,
adamc@149 294 string "[",
adamc@149 295 p_con env field,
adamc@149 296 space,
adamc@149 297 string " in ",
adamc@149 298 space,
adamc@149 299 p_con env rest,
adamc@149 300 string "]"]
adamc@149 301 else
adamc@149 302 box [p_exp' true env e,
adamc@149 303 space,
adamc@149 304 string "--",
adamc@149 305 space,
adamc@149 306 p_con' true env c])
adamc@73 307 | EFold _ => string "fold"
adamc@16 308
adamc@288 309 | ECase (e, pes, {disc, result}) =>
adamc@288 310 parenIf par (box [string "case",
adamc@288 311 space,
adamc@288 312 p_exp env e,
adamc@288 313 space,
adamc@288 314 if !debug then
adamc@288 315 box [string "in",
adamc@288 316 space,
adamc@288 317 p_con env disc,
adamc@288 318 space,
adamc@288 319 string "return",
adamc@288 320 space,
adamc@288 321 p_con env result,
adamc@288 322 space]
adamc@288 323 else
adamc@288 324 box [],
adamc@288 325 string "of",
adamc@288 326 space,
adamc@288 327 p_list_sep (box [space, string "|", space])
adamc@288 328 (fn (p, e) => box [p_pat env p,
adamc@288 329 space,
adamc@288 330 string "=>",
adamc@288 331 space,
adamc@288 332 p_exp (E.patBinds env p) e]) pes])
adamc@177 333
adamc@102 334 | EWrite e => box [string "write(",
adamc@102 335 p_exp env e,
adamc@102 336 string ")"]
adamc@102 337
adamc@110 338 | EClosure (n, es) => box [string "CLOSURE(",
adamc@110 339 p_enamed env n,
adamc@110 340 p_list_sep (string "") (fn e => box [string ", ",
adamc@110 341 p_exp env e]) es,
adamc@110 342 string ")"]
adamc@110 343
adamc@16 344 and p_exp env = p_exp' false env
adamc@16 345
adamc@247 346 fun p_named x n =
adamc@247 347 if !debug then
adamc@247 348 box [string x,
adamc@247 349 string "__",
adamc@247 350 string (Int.toString n)]
adamc@247 351 else
adamc@247 352 string x
adamc@247 353
adamc@125 354 fun p_vali env (x, n, t, e, s) =
adamc@125 355 let
adamc@247 356 val xp = p_named x n
adamc@125 357 in
adamc@125 358 box [xp,
adamc@125 359 space,
adamc@125 360 string "as",
adamc@125 361 space,
adamc@125 362 string s,
adamc@125 363 space,
adamc@125 364 string ":",
adamc@125 365 space,
adamc@125 366 p_con env t,
adamc@125 367 space,
adamc@125 368 string "=",
adamc@125 369 space,
adamc@125 370 p_exp env e]
adamc@125 371 end
adamc@125 372
adamc@144 373 fun p_export_kind ck =
adamc@144 374 case ck of
adamc@144 375 Link => string "link"
adamc@144 376 | Action => string "action"
adamc@144 377
adamc@192 378 fun p_datatype env (x, n, xs, cons) =
adamc@163 379 let
adamc@192 380 val k = (KType, ErrorMsg.dummySpan)
adamc@163 381 val env = E.pushCNamed env x n (KType, ErrorMsg.dummySpan) NONE
adamc@192 382 val env = foldl (fn (x, env) => E.pushCRel env x k) env xs
adamc@193 383
adamc@193 384 val xp = if !debug then
adamc@193 385 string (x ^ "__" ^ Int.toString n)
adamc@193 386 else
adamc@193 387 string x
adamc@163 388 in
adamc@163 389 box [string "datatype",
adamc@163 390 space,
adamc@193 391 xp,
adamc@192 392 p_list_sep (box []) (fn x => box [space, string x]) xs,
adamc@163 393 space,
adamc@163 394 string "=",
adamc@163 395 space,
adamc@163 396 p_list_sep (box [space, string "|", space])
adamc@163 397 (fn (x, n, NONE) => if !debug then (string (x ^ "__" ^ Int.toString n))
adamc@163 398 else string x
adamc@193 399 | (x, n, SOME t) => box [if !debug then (string (x ^ "__" ^ Int.toString n))
adamc@163 400 else string x, space, string "of", space, p_con env t])
adamc@163 401 cons]
adamc@163 402 end
adamc@163 403
adamc@125 404 fun p_decl env (dAll as (d, _) : decl) =
adamc@16 405 case d of
adamc@16 406 DCon (x, n, k, c) =>
adamc@16 407 let
adamc@16 408 val xp = if !debug then
adamc@16 409 box [string x,
adamc@16 410 string "__",
adamc@16 411 string (Int.toString n)]
adamc@16 412 else
adamc@16 413 string x
adamc@16 414 in
adamc@16 415 box [string "con",
adamc@16 416 space,
adamc@16 417 xp,
adamc@16 418 space,
adamc@16 419 string "::",
adamc@16 420 space,
adamc@16 421 p_kind k,
adamc@16 422 space,
adamc@16 423 string "=",
adamc@16 424 space,
adamc@16 425 p_con env c]
adamc@16 426 end
adamc@163 427 | DDatatype x => p_datatype env x
adamc@125 428 | DVal vi => box [string "val",
adamc@125 429 space,
adamc@125 430 p_vali env vi]
adamc@125 431 | DValRec vis =>
adamc@16 432 let
adamc@125 433 val env = E.declBinds env dAll
adamc@16 434 in
adamc@16 435 box [string "val",
adamc@16 436 space,
adamc@125 437 string "rec",
adamc@16 438 space,
adamc@125 439 p_list_sep (box [newline, string "and", space]) (p_vali env) vis]
adamc@16 440 end
adamc@144 441 | DExport (ek, n) => box [string "export",
adamc@144 442 space,
adamc@144 443 p_export_kind ek,
adamc@144 444 space,
adamc@144 445 p_enamed env n,
adamc@144 446 space,
adamc@144 447 string "as",
adamc@144 448 space,
adamc@144 449 p_con env (#2 (E.lookupENamed env n))]
adamc@247 450 | DTable (x, n, c, s) => box [string "table",
adamc@247 451 space,
adamc@247 452 p_named x n,
adamc@247 453 space,
adamc@247 454 string "as",
adamc@247 455 space,
adamc@247 456 string s,
adamc@247 457 space,
adamc@247 458 string ":",
adamc@247 459 space,
adamc@247 460 p_con env c]
adamc@338 461 | DSequence (x, n, s) => box [string "sequence",
adamc@338 462 space,
adamc@338 463 p_named x n,
adamc@338 464 space,
adamc@338 465 string "as",
adamc@338 466 space,
adamc@338 467 string s]
adamc@271 468 | DDatabase s => box [string "database",
adamc@271 469 space,
adamc@271 470 string s]
adamc@16 471
adamc@16 472 fun p_file env file =
adamc@16 473 let
adamc@31 474 val (pds, _) = ListUtil.foldlMap (fn (d, env) =>
adamc@31 475 (p_decl env d,
adamc@31 476 E.declBinds env d))
adamc@16 477 env file
adamc@16 478 in
adamc@16 479 p_list_sep newline (fn x => x) pds
adamc@16 480 end
adamc@16 481
adamc@16 482 end