[/] [trunk/] [src/] [util.sml] - Rev 62
(* $Id: util.sml 62 2008-08-20 11:20:33Z tbourke $
*
* Copyright (c) 2008 Timothy Bourke (University of NSW and NICTA)
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the "BSD License" which is distributed with the
* software in the file LICENSE.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the BSD
* License for more details.
*)
structure Util :
sig
val warn : string list -> unit
val abort : string list -> 'a
val debug : (Settings.debug_priority * (unit -> string list)) -> unit
val debugAll : (unit -> string list) -> unit
val debugVeryDetailed : (unit -> string list) -> unit
val debugDetailed : (unit -> string list) -> unit
val debugOutline : (unit -> string list) -> unit
(* show borders *)
val debugSect : (Settings.debug_priority * (unit -> string list)) -> unit
val debugSubsect : (Settings.debug_priority * (unit -> string list)) -> unit
val debugIndent : (Settings.debug_priority * (unit -> string list)) -> unit
val debugOutdent : (Settings.debug_priority * (unit -> string list)) -> unit
end
=
let structure TIO = TextIO
in
struct
val indent = ref 0
val indentAmount = 3;
fun sect () = (StringCvt.padLeft #" " (!indent) "") ^
(StringCvt.padLeft #"*" 71 "\n")
fun subsect () = (StringCvt.padLeft #" " (!indent) "") ^
(StringCvt.padLeft #"-" 71 "\n")
fun warn msg = (TIO.output (TIO.stdErr,
String.concat (Settings.progName::":"::msg));
TIO.output (TIO.stdErr, "\n"))
fun abort msg = (TIO.output (TIO.stdErr,
String.concat (Settings.progName::":"::msg));
TIO.output (TIO.stdErr, "\n");
OS.Process.exit (OS.Process.failure))
local
val split = Substring.tokens (fn #"\n"=>true | _ => false)
fun pr ss = (TIO.output (TIO.stdErr, StringCvt.padLeft #" " (!indent) "");
TIO.output (TIO.stdErr, Substring.string ss);
TIO.output (TIO.stdErr, "\n"))
in
fun print (indent, lazystrs) = case lazystrs ()
of [] => ()
| strs => app pr ((split o Substring.full) (concat strs))
end (* local *)
fun debug (priority, lazystrs) =
if Settings.showDebug (priority)
then print (!indent, lazystrs) else ()
fun debugSect (priority, lazystrs) =
if Settings.showDebug (priority)
then (TIO.output (TIO.stdErr, sect ());
print (!indent, lazystrs))
else ()
fun debugSubsect (priority, lazystrs) =
if Settings.showDebug (priority)
then (TIO.output (TIO.stdErr, subsect ());
print (!indent, lazystrs))
else ()
fun debugIndent (priority, lazystrs) =
if Settings.showDebug (priority)
then (print (!indent, lazystrs);
indent := (!indent) + indentAmount)
else ()
fun debugOutdent (priority, lazystrs) =
if Settings.showDebug (priority)
then (indent := (!indent) - indentAmount;
print (!indent, lazystrs))
else ()
fun debugAll ls = debug (Settings.All, ls)
fun debugVeryDetailed ls = debug (Settings.VeryDetailed, ls)
fun debugDetailed ls = debug (Settings.Detailed, ls)
fun debugOutline ls = debug (Settings.Outline, ls)
end
end