annotate src/expl_print.sml @ 48:0a5c312de09a

Start of FFI
author Adam Chlipala <adamc@hcoop.net>
date Sun, 22 Jun 2008 09:27:29 -0400
parents 3c1ce1b4eb3d
children d609820c5834
rev   line source
adamc@38 1 (* Copyright (c) 2008, Adam Chlipala
adamc@38 2 * All rights reserved.
adamc@38 3 *
adamc@38 4 * Redistribution and use in source and binary forms, with or without
adamc@38 5 * modification, are permitted provided that the following conditions are met:
adamc@38 6 *
adamc@38 7 * - Redistributions of source code must retain the above copyright notice,
adamc@38 8 * this list of conditions and the following disclaimer.
adamc@38 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@38 10 * this list of conditions and the following disclaimer in the documentation
adamc@38 11 * and/or other materials provided with the distribution.
adamc@38 12 * - The names of contributors may not be used to endorse or promote products
adamc@38 13 * derived from this software without specific prior written permission.
adamc@38 14 *
adamc@38 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@38 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@38 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@38 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@38 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@38 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@38 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@38 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@38 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@38 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@38 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@38 26 *)
adamc@38 27
adamc@38 28 (* Pretty-printing elaborated Laconic/Web *)
adamc@38 29
adamc@38 30 structure ExplPrint :> EXPL_PRINT = struct
adamc@38 31
adamc@38 32 open Print.PD
adamc@38 33 open Print
adamc@38 34
adamc@38 35 open Expl
adamc@38 36
adamc@38 37 structure E = ExplEnv
adamc@38 38
adamc@38 39 val debug = ref false
adamc@38 40
adamc@38 41 fun p_kind' par (k, _) =
adamc@38 42 case k of
adamc@38 43 KType => string "Type"
adamc@38 44 | KArrow (k1, k2) => parenIf par (box [p_kind' true k1,
adamc@38 45 space,
adamc@38 46 string "->",
adamc@38 47 space,
adamc@38 48 p_kind k2])
adamc@38 49 | KName => string "Name"
adamc@38 50 | KRecord k => box [string "{", p_kind k, string "}"]
adamc@38 51
adamc@38 52 and p_kind k = p_kind' false k
adamc@38 53
adamc@38 54 fun p_con' par env (c, _) =
adamc@38 55 case c of
adamc@38 56 TFun (t1, t2) => parenIf par (box [p_con' true env t1,
adamc@38 57 space,
adamc@38 58 string "->",
adamc@38 59 space,
adamc@38 60 p_con env t2])
adamc@38 61 | TCFun (x, k, c) => parenIf par (box [string x,
adamc@38 62 space,
adamc@38 63 string "::",
adamc@38 64 space,
adamc@38 65 p_kind k,
adamc@38 66 space,
adamc@38 67 string "->",
adamc@38 68 space,
adamc@38 69 p_con (E.pushCRel env x k) c])
adamc@38 70 | TRecord (CRecord (_, xcs), _) => box [string "{",
adamc@38 71 p_list (fn (x, c) =>
adamc@38 72 box [p_name env x,
adamc@38 73 space,
adamc@38 74 string ":",
adamc@38 75 space,
adamc@38 76 p_con env c]) xcs,
adamc@38 77 string "}"]
adamc@38 78 | TRecord c => box [string "$",
adamc@38 79 p_con' true env c]
adamc@38 80
adamc@38 81 | CRel n =>
adamc@38 82 if !debug then
adamc@38 83 string (#1 (E.lookupCRel env n) ^ "_" ^ Int.toString n)
adamc@38 84 else
adamc@38 85 string (#1 (E.lookupCRel env n))
adamc@38 86 | CNamed n =>
adamc@38 87 ((if !debug then
adamc@38 88 string (#1 (E.lookupCNamed env n) ^ "__" ^ Int.toString n)
adamc@38 89 else
adamc@38 90 string (#1 (E.lookupCNamed env n)))
adamc@38 91 handle E.UnboundNamed _ => string ("UNBOUND_NAMED" ^ Int.toString n))
adamc@38 92 | CModProj (m1, ms, x) =>
adamc@38 93 let
adamc@38 94 val (m1x, sgn) = E.lookupStrNamed env m1
adamc@38 95
adamc@38 96 val m1s = if !debug then
adamc@38 97 m1x ^ "__" ^ Int.toString m1
adamc@38 98 else
adamc@38 99 m1x
adamc@38 100 in
adamc@38 101 p_list_sep (string ".") string (m1x :: ms @ [x])
adamc@38 102 end
adamc@38 103
adamc@38 104 | CApp (c1, c2) => parenIf par (box [p_con env c1,
adamc@38 105 space,
adamc@38 106 p_con' true env c2])
adamc@38 107 | CAbs (x, k, c) => parenIf par (box [string "fn",
adamc@38 108 space,
adamc@38 109 string x,
adamc@38 110 space,
adamc@38 111 string "::",
adamc@38 112 space,
adamc@38 113 p_kind k,
adamc@38 114 space,
adamc@38 115 string "=>",
adamc@38 116 space,
adamc@38 117 p_con (E.pushCRel env x k) c])
adamc@38 118
adamc@38 119 | CName s => box [string "#", string s]
adamc@38 120
adamc@38 121 | CRecord (k, xcs) =>
adamc@38 122 if !debug then
adamc@38 123 parenIf par (box [string "[",
adamc@38 124 p_list (fn (x, c) =>
adamc@38 125 box [p_con env x,
adamc@38 126 space,
adamc@38 127 string "=",
adamc@38 128 space,
adamc@38 129 p_con env c]) xcs,
adamc@38 130 string "]::",
adamc@38 131 p_kind k])
adamc@38 132 else
adamc@38 133 parenIf par (box [string "[",
adamc@38 134 p_list (fn (x, c) =>
adamc@38 135 box [p_con env x,
adamc@38 136 space,
adamc@38 137 string "=",
adamc@38 138 space,
adamc@38 139 p_con env c]) xcs,
adamc@38 140 string "]"])
adamc@38 141 | CConcat (c1, c2) => parenIf par (box [p_con' true env c1,
adamc@38 142 space,
adamc@38 143 string "++",
adamc@38 144 space,
adamc@38 145 p_con env c2])
adamc@38 146
adamc@38 147 and p_con env = p_con' false env
adamc@38 148
adamc@38 149 and p_name env (all as (c, _)) =
adamc@38 150 case c of
adamc@38 151 CName s => string s
adamc@38 152 | _ => p_con env all
adamc@38 153
adamc@38 154 fun p_exp' par env (e, _) =
adamc@38 155 case e of
adamc@38 156 EPrim p => Prim.p_t p
adamc@38 157 | ERel n =>
adamc@38 158 if !debug then
adamc@38 159 string (#1 (E.lookupERel env n) ^ "_" ^ Int.toString n)
adamc@38 160 else
adamc@38 161 string (#1 (E.lookupERel env n))
adamc@38 162 | ENamed n =>
adamc@38 163 if !debug then
adamc@38 164 string (#1 (E.lookupENamed env n) ^ "__" ^ Int.toString n)
adamc@38 165 else
adamc@38 166 string (#1 (E.lookupENamed env n))
adamc@38 167 | EModProj (m1, ms, x) =>
adamc@38 168 let
adamc@38 169 val (m1x, sgn) = E.lookupStrNamed env m1
adamc@38 170
adamc@38 171 val m1s = if !debug then
adamc@38 172 m1x ^ "__" ^ Int.toString m1
adamc@38 173 else
adamc@38 174 m1x
adamc@38 175 in
adamc@38 176 p_list_sep (string ".") string (m1x :: ms @ [x])
adamc@38 177 end
adamc@38 178
adamc@38 179 | EApp (e1, e2) => parenIf par (box [p_exp env e1,
adamc@38 180 space,
adamc@38 181 p_exp' true env e2])
adamc@38 182 | EAbs (x, t, _, e) => parenIf par (box [string "fn",
adamc@38 183 space,
adamc@38 184 string x,
adamc@38 185 space,
adamc@38 186 string ":",
adamc@38 187 space,
adamc@38 188 p_con env t,
adamc@38 189 space,
adamc@38 190 string "=>",
adamc@38 191 space,
adamc@38 192 p_exp (E.pushERel env x t) e])
adamc@38 193 | ECApp (e, c) => parenIf par (box [p_exp env e,
adamc@38 194 space,
adamc@38 195 string "[",
adamc@38 196 p_con env c,
adamc@38 197 string "]"])
adamc@38 198 | ECAbs (x, k, e) => parenIf par (box [string "fn",
adamc@38 199 space,
adamc@38 200 string x,
adamc@38 201 space,
adamc@38 202 string "::",
adamc@38 203 space,
adamc@38 204 p_kind k,
adamc@38 205 space,
adamc@38 206 string "=>",
adamc@38 207 space,
adamc@38 208 p_exp (E.pushCRel env x k) e])
adamc@38 209
adamc@38 210 | ERecord xes => box [string "{",
adamc@38 211 p_list (fn (x, e, _) =>
adamc@38 212 box [p_name env x,
adamc@38 213 space,
adamc@38 214 string "=",
adamc@38 215 space,
adamc@38 216 p_exp env e]) xes,
adamc@38 217 string "}"]
adamc@38 218 | EField (e, c, {field, rest}) =>
adamc@38 219 if !debug then
adamc@38 220 box [p_exp' true env e,
adamc@38 221 string ".",
adamc@38 222 p_con' true env c,
adamc@38 223 space,
adamc@38 224 string "[",
adamc@38 225 p_con env field,
adamc@38 226 space,
adamc@38 227 string " in ",
adamc@38 228 space,
adamc@38 229 p_con env rest,
adamc@38 230 string "]"]
adamc@38 231 else
adamc@38 232 box [p_exp' true env e,
adamc@38 233 string ".",
adamc@38 234 p_con' true env c]
adamc@38 235
adamc@38 236 and p_exp env = p_exp' false env
adamc@38 237
adamc@38 238 fun p_named x n =
adamc@38 239 if !debug then
adamc@38 240 box [string x,
adamc@38 241 string "__",
adamc@38 242 string (Int.toString n)]
adamc@38 243 else
adamc@38 244 string x
adamc@38 245
adamc@38 246 fun p_sgn_item env (sgi, _) =
adamc@38 247 case sgi of
adamc@38 248 SgiConAbs (x, n, k) => box [string "con",
adamc@38 249 space,
adamc@38 250 p_named x n,
adamc@38 251 space,
adamc@38 252 string "::",
adamc@38 253 space,
adamc@38 254 p_kind k]
adamc@38 255 | SgiCon (x, n, k, c) => box [string "con",
adamc@38 256 space,
adamc@38 257 p_named x n,
adamc@38 258 space,
adamc@38 259 string "::",
adamc@38 260 space,
adamc@38 261 p_kind k,
adamc@38 262 space,
adamc@38 263 string "=",
adamc@38 264 space,
adamc@38 265 p_con env c]
adamc@38 266 | SgiVal (x, n, c) => box [string "val",
adamc@38 267 space,
adamc@38 268 p_named x n,
adamc@38 269 space,
adamc@38 270 string ":",
adamc@38 271 space,
adamc@38 272 p_con env c]
adamc@38 273 | SgiStr (x, n, sgn) => box [string "structure",
adamc@38 274 space,
adamc@38 275 p_named x n,
adamc@38 276 space,
adamc@38 277 string ":",
adamc@38 278 space,
adamc@38 279 p_sgn env sgn]
adamc@38 280
adamc@38 281 and p_sgn env (sgn, _) =
adamc@38 282 case sgn of
adamc@38 283 SgnConst sgis => box [string "sig",
adamc@38 284 newline,
adamc@38 285 let
adamc@38 286 val (psgis, _) = ListUtil.foldlMap (fn (sgi, env) =>
adamc@38 287 (p_sgn_item env sgi,
adamc@38 288 E.sgiBinds env sgi))
adamc@38 289 env sgis
adamc@38 290 in
adamc@38 291 p_list_sep newline (fn x => x) psgis
adamc@38 292 end,
adamc@38 293 newline,
adamc@38 294 string "end"]
adamc@38 295 | SgnVar n => string (#1 (E.lookupSgnNamed env n))
adamc@45 296 | SgnFun (x, n, sgn, sgn') => box [string "functor",
adamc@45 297 space,
adamc@45 298 string "(",
adamc@45 299 string x,
adamc@45 300 space,
adamc@45 301 string ":",
adamc@45 302 space,
adamc@45 303 p_sgn env sgn,
adamc@45 304 string ")",
adamc@45 305 space,
adamc@45 306 string ":",
adamc@45 307 space,
adamc@45 308 p_sgn (E.pushStrNamed env x n sgn) sgn']
adamc@45 309 | SgnWhere (sgn, x, c) => box [p_sgn env sgn,
adamc@45 310 space,
adamc@45 311 string "where",
adamc@45 312 space,
adamc@45 313 string "con",
adamc@45 314 space,
adamc@45 315 string x,
adamc@45 316 space,
adamc@45 317 string "=",
adamc@45 318 space,
adamc@45 319 p_con env c]
adamc@38 320
adamc@38 321 fun p_decl env ((d, _) : decl) =
adamc@38 322 case d of
adamc@38 323 DCon (x, n, k, c) => box [string "con",
adamc@38 324 space,
adamc@38 325 p_named x n,
adamc@38 326 space,
adamc@38 327 string "::",
adamc@38 328 space,
adamc@38 329 p_kind k,
adamc@38 330 space,
adamc@38 331 string "=",
adamc@38 332 space,
adamc@38 333 p_con env c]
adamc@38 334 | DVal (x, n, t, e) => box [string "val",
adamc@38 335 space,
adamc@38 336 p_named x n,
adamc@38 337 space,
adamc@38 338 string ":",
adamc@38 339 space,
adamc@38 340 p_con env t,
adamc@38 341 space,
adamc@38 342 string "=",
adamc@38 343 space,
adamc@38 344 p_exp env e]
adamc@38 345
adamc@38 346 | DSgn (x, n, sgn) => box [string "signature",
adamc@38 347 space,
adamc@38 348 p_named x n,
adamc@38 349 space,
adamc@38 350 string "=",
adamc@38 351 space,
adamc@38 352 p_sgn env sgn]
adamc@38 353 | DStr (x, n, sgn, str) => box [string "structure",
adamc@38 354 space,
adamc@38 355 p_named x n,
adamc@38 356 space,
adamc@38 357 string ":",
adamc@38 358 space,
adamc@38 359 p_sgn env sgn,
adamc@38 360 space,
adamc@38 361 string "=",
adamc@38 362 space,
adamc@38 363 p_str env str]
adamc@48 364 | DFfiStr (x, n, sgn) => box [string "extern",
adamc@48 365 space,
adamc@48 366 string "structure",
adamc@48 367 space,
adamc@48 368 p_named x n,
adamc@48 369 space,
adamc@48 370 string ":",
adamc@48 371 space,
adamc@48 372 p_sgn env sgn]
adamc@38 373
adamc@38 374 and p_str env (str, _) =
adamc@38 375 case str of
adamc@38 376 StrConst ds => box [string "struct",
adamc@38 377 newline,
adamc@38 378 p_file env ds,
adamc@38 379 newline,
adamc@38 380 string "end"]
adamc@38 381 | StrVar n => string (#1 (E.lookupStrNamed env n))
adamc@38 382 | StrProj (str, s) => box [p_str env str,
adamc@38 383 string ".",
adamc@38 384 string s]
adamc@45 385 | StrFun (x, n, sgn, sgn', str) =>
adamc@45 386 let
adamc@45 387 val env' = E.pushStrNamed env x n sgn
adamc@45 388 in
adamc@45 389 box [string "functor",
adamc@45 390 space,
adamc@45 391 string "(",
adamc@45 392 string x,
adamc@45 393 space,
adamc@45 394 string ":",
adamc@45 395 space,
adamc@45 396 p_sgn env sgn,
adamc@45 397 string ")",
adamc@45 398 space,
adamc@45 399 string ":",
adamc@45 400 space,
adamc@45 401 p_sgn env' sgn',
adamc@45 402 space,
adamc@45 403 string "=>",
adamc@45 404 space,
adamc@45 405 p_str env' str]
adamc@45 406 end
adamc@45 407 | StrApp (str1, str2) => box [p_str env str1,
adamc@45 408 string "(",
adamc@45 409 p_str env str2,
adamc@45 410 string ")"]
adamc@38 411
adamc@38 412 and p_file env file =
adamc@38 413 let
adamc@38 414 val (pds, _) = ListUtil.foldlMap (fn (d, env) =>
adamc@38 415 (p_decl env d,
adamc@38 416 E.declBinds env d))
adamc@38 417 env file
adamc@38 418 in
adamc@38 419 p_list_sep newline (fn x => x) pds
adamc@38 420 end
adamc@38 421
adamc@38 422 end