author | haftmann |
Mon, 17 Dec 2007 17:57:50 +0100 | |
changeset 25667 | a089038c1893 |
parent 25640 | 1546ffd84986 |
child 25682 | c65add60a1e4 |
permissions | -rw-r--r-- |
14815 | 1 |
(* Title: Pure/General/output.ML |
2 |
ID: $Id$ |
|
3 |
Author: Makarius, Hagia Maria Sion Abbey (Jerusalem) |
|
4 |
||
22585 | 5 |
Output channels and timing messages. |
14815 | 6 |
*) |
7 |
||
8 |
signature BASIC_OUTPUT = |
|
9 |
sig |
|
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
10 |
type output = string |
18682
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
11 |
val writeln: string -> unit |
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
12 |
val priority: string -> unit |
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
13 |
val tracing: string -> unit |
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
14 |
val warning: string -> unit |
22826 | 15 |
val tolerate_legacy_features: bool ref |
16 |
val legacy_feature: string -> unit |
|
14869 | 17 |
val timing: bool ref |
14815 | 18 |
val cond_timeit: bool -> (unit -> 'a) -> 'a |
19 |
val timeit: (unit -> 'a) -> 'a |
|
20 |
val timeap: ('a -> 'b) -> 'a -> 'b |
|
21 |
val timeap_msg: string -> ('a -> 'b) -> 'a -> 'b |
|
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
22 |
val time_accumulator: string -> ('a -> 'b) -> 'a -> 'b |
14815 | 23 |
end; |
24 |
||
25 |
signature OUTPUT = |
|
26 |
sig |
|
27 |
include BASIC_OUTPUT |
|
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
28 |
val default_output: string -> output * int |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
29 |
val default_escape: output -> string |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
30 |
val add_mode: string -> (string -> output * int) -> (output -> string) -> unit |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
31 |
val output_width: string -> output * int |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
32 |
val output: string -> output |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
33 |
val escape: output -> string |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
34 |
val std_output: output -> unit |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
35 |
val std_error: output -> unit |
22585 | 36 |
val immediate_output: string -> unit |
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
37 |
val writeln_default: output -> unit |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
38 |
val writeln_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
39 |
val priority_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
40 |
val tracing_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
41 |
val warning_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
42 |
val error_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
43 |
val debug_fn: (output -> unit) ref |
22585 | 44 |
val debugging: bool ref |
45 |
val no_warnings: ('a -> 'b) -> 'a -> 'b |
|
22130 | 46 |
val debug: (unit -> string) -> unit |
18682
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
47 |
val error_msg: string -> unit |
24652 | 48 |
val ml_output: (string -> unit) * (string -> 'a) |
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
49 |
val accumulated_time: unit -> unit |
14815 | 50 |
end; |
51 |
||
52 |
structure Output: OUTPUT = |
|
53 |
struct |
|
54 |
||
23616 | 55 |
(** print modes **) |
14881 | 56 |
|
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
57 |
type output = string; (*raw system output*) |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
58 |
|
23616 | 59 |
fun default_output s = (s, size s); |
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
60 |
fun default_escape (s: output) = s; |
14815 | 61 |
|
23616 | 62 |
local |
63 |
val default = {output = default_output, escape = default_escape}; |
|
64 |
val modes = ref (Symtab.make [("", default)]); |
|
65 |
in |
|
23922
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
66 |
fun add_mode name output escape = CRITICAL (fn () => |
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
67 |
change modes (Symtab.update_new (name, {output = output, escape = escape}))); |
23616 | 68 |
fun get_mode () = |
24612 | 69 |
the_default default (Library.get_first (Symtab.lookup (! modes)) (print_mode_value ())); |
23616 | 70 |
end; |
14815 | 71 |
|
19265 | 72 |
fun output_width x = #output (get_mode ()) x; |
14815 | 73 |
val output = #1 o output_width; |
23727 | 74 |
|
23616 | 75 |
fun escape x = #escape (get_mode ()) x; |
14815 | 76 |
|
77 |
||
78 |
||
79 |
(** output channels **) |
|
80 |
||
14984 | 81 |
(* output primitives -- normally NOT used directly!*) |
82 |
||
24058 | 83 |
fun std_output s = NAMED_CRITICAL "IO" (fn () => |
23922
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
84 |
(TextIO.output (TextIO.stdOut, s); TextIO.flushOut TextIO.stdOut)); |
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
85 |
|
24058 | 86 |
fun std_error s = NAMED_CRITICAL "IO" (fn () => |
23922
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
87 |
(TextIO.output (TextIO.stdErr, s); TextIO.flushOut TextIO.stdErr)); |
14815 | 88 |
|
14984 | 89 |
val immediate_output = std_output o output; |
14815 | 90 |
val writeln_default = std_output o suffix "\n"; |
91 |
||
14984 | 92 |
|
93 |
(* Isabelle output channels *) |
|
94 |
||
14815 | 95 |
val writeln_fn = ref writeln_default; |
96 |
val priority_fn = ref (fn s => ! writeln_fn s); |
|
97 |
val tracing_fn = ref (fn s => ! writeln_fn s); |
|
98 |
val warning_fn = ref (std_output o suffix "\n" o prefix_lines "### "); |
|
99 |
val error_fn = ref (std_output o suffix "\n" o prefix_lines "*** "); |
|
15190 | 100 |
val debug_fn = ref (std_output o suffix "\n" o prefix_lines "::: "); |
14815 | 101 |
|
102 |
fun writeln s = ! writeln_fn (output s); |
|
103 |
fun priority s = ! priority_fn (output s); |
|
104 |
fun tracing s = ! tracing_fn (output s); |
|
105 |
fun warning s = ! warning_fn (output s); |
|
15190 | 106 |
|
22826 | 107 |
val tolerate_legacy_features = ref true; |
108 |
fun legacy_feature s = |
|
109 |
(if ! tolerate_legacy_features then warning else error) ("Legacy feature: " ^ s); |
|
110 |
||
16191 | 111 |
fun no_warnings f = setmp warning_fn (K ()) f; |
112 |
||
22130 | 113 |
val debugging = ref false; |
114 |
fun debug s = if ! debugging then ! debug_fn (output (s ())) else () |
|
15190 | 115 |
|
14815 | 116 |
fun error_msg s = ! error_fn (output s); |
18682
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
117 |
|
24652 | 118 |
val ml_output = (writeln, error); |
20926 | 119 |
|
14815 | 120 |
|
121 |
||
122 |
(** timing **) |
|
123 |
||
14869 | 124 |
(*global timing mode*) |
125 |
val timing = ref false; |
|
126 |
||
25667 | 127 |
(*generic timing combinator*) |
128 |
fun gen_timeit flag some_msg f = |
|
14815 | 129 |
if flag then |
23862 | 130 |
let |
131 |
val start = start_timing (); |
|
132 |
val result = f (); |
|
25667 | 133 |
val _ = Option.map warning some_msg; |
134 |
val _ = warning (end_timing start); |
|
135 |
in result end |
|
14815 | 136 |
else f (); |
137 |
||
25667 | 138 |
(*conditional timing*) |
139 |
fun cond_timeit flag = gen_timeit flag NONE; |
|
140 |
||
23862 | 141 |
(*unconditional timing*) |
14815 | 142 |
fun timeit x = cond_timeit true x; |
143 |
||
144 |
(*timed application function*) |
|
145 |
fun timeap f x = timeit (fn () => f x); |
|
25667 | 146 |
fun timeap_msg s f x = gen_timeit true (SOME s) (fn () => f x); |
14815 | 147 |
|
14978 | 148 |
|
149 |
(* accumulated timing *) |
|
150 |
||
151 |
local |
|
152 |
||
153 |
datatype time_info = TI of |
|
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
154 |
{name: string, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
155 |
timer: Timer.cpu_timer, |
14978 | 156 |
sys: Time.time, |
157 |
usr: Time.time, |
|
158 |
gc: Time.time, |
|
159 |
count: int}; |
|
160 |
||
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
161 |
fun time_init name = ref (TI |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
162 |
{name = name, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
163 |
timer = Timer.startCPUTimer (), |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
164 |
sys = Time.zeroTime, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
165 |
usr = Time.zeroTime, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
166 |
gc = Time.zeroTime, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
167 |
count = 0}); |
14978 | 168 |
|
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
169 |
fun time_reset (r as ref (TI {name, ...})) = r := ! (time_init name); |
14978 | 170 |
|
171 |
fun time_check (ref (TI r)) = r; |
|
172 |
||
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
173 |
fun time_add ti f x = |
14978 | 174 |
let |
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
175 |
fun add_diff time time1 time2 = |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
176 |
Time.+ (time, Time.- (time2, time1) handle Time.Time => Time.zeroTime); |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
177 |
val {name, timer, sys, usr, gc, count} = time_check ti; |
21295
63552bc99cfb
tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents:
20926
diff
changeset
|
178 |
val (sys1, usr1, gc1) = check_timer timer; |
23963
c2ee97a963db
moved exception capture/release to structure Exn;
wenzelm
parents:
23939
diff
changeset
|
179 |
val result = Exn.capture f x; |
21295
63552bc99cfb
tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents:
20926
diff
changeset
|
180 |
val (sys2, usr2, gc2) = check_timer timer; |
14978 | 181 |
in |
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
182 |
ti := TI |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
183 |
{name = name, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
184 |
timer = timer, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
185 |
sys = add_diff sys sys1 sys2, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
186 |
usr = add_diff usr usr1 usr2, |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
187 |
gc = add_diff gc gc1 gc2, |
14978 | 188 |
count = count + 1}; |
23963
c2ee97a963db
moved exception capture/release to structure Exn;
wenzelm
parents:
23939
diff
changeset
|
189 |
Exn.release result |
14978 | 190 |
end; |
191 |
||
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
192 |
fun time_finish ti = |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
193 |
let |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
194 |
fun secs prfx time = prfx ^ Time.toString time; |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
195 |
val {name, timer, sys, usr, gc, count} = time_check ti; |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
196 |
in |
22585 | 197 |
warning ("Total of " ^ quote name ^ ": " ^ |
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
198 |
secs "User " usr ^ secs " GC " gc ^ secs " All " (Time.+ (sys, Time.+ (usr, gc))) ^ |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
199 |
" secs in " ^ string_of_int count ^ " calls"); |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
200 |
time_reset ti |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
201 |
end; |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
202 |
|
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
203 |
val time_finish_hooks = ref ([]: (unit -> unit) list); |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
204 |
|
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
205 |
in |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
206 |
|
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
207 |
fun time_accumulator name = |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
208 |
let val ti = time_init name in |
23939 | 209 |
CRITICAL (fn () => change time_finish_hooks (cons (fn () => time_finish ti))); |
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
210 |
time_add ti |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
211 |
end; |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
212 |
|
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
213 |
fun accumulated_time () = List.app (fn f => f ()) (! time_finish_hooks); |
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
214 |
|
14978 | 215 |
end; |
216 |
||
14815 | 217 |
end; |
218 |
||
219 |
structure BasicOutput: BASIC_OUTPUT = Output; |
|
220 |
open BasicOutput; |