src/Pure/ML-Systems/polyml_old_compiler5.ML
author wenzelm
Mon, 24 Mar 2008 18:35:49 +0100
changeset 26383 08da16c3f124
child 26385 ae7564661e76
permissions -rw-r--r--
Runtime compilation -- for old version of PolyML.compilerEx (version 5.0, 5.1).

(*  Title:      Pure/ML-Systems/polyml_old_compiler5.ML
    ID:         $Id$

Runtime compilation -- for old version of PolyML.compilerEx (version 5.0, 5.1).
*)

fun use_text (tune: string -> string) name (print, err) verbose txt =
  let
    val in_buffer = ref (explode (tune txt));
    val out_buffer = ref ([]: string list);
    fun output () = implode (rev (case ! out_buffer of "\n" :: cs => cs | cs => cs));

    val line_no = ref 1;
    fun line () = ! line_no;
    fun get () =
      (case ! in_buffer of
        [] => ""
      | c :: cs => (in_buffer := cs; if c = "\n" then line_no := ! line_no + 1 else (); c));
    fun put s = out_buffer := s :: ! out_buffer;

    fun exec () =
      (case ! in_buffer of
        [] => ()
      | _ => (PolyML.compilerEx (get, put, line, name) (); exec ()));
  in
    exec () handle exn => (err (output ()); raise exn);
    if verbose then print (output ()) else ()
  end;

fun use_file tune output verbose name =
  let
    val instream = TextIO.openIn name;
    val txt = TextIO.inputAll instream before TextIO.closeIn instream;
  in use_text tune name output verbose txt end;