author | berghofe |
Fri, 03 Apr 2009 10:09:06 +0200 | |
changeset 30861 | 294e8ee163ea |
parent 30674 | 2f17c664d7fa |
child 31685 | c124445a4b61 |
permissions | -rw-r--r-- |
14815 | 1 |
(* Title: Pure/General/output.ML |
2 |
Author: Makarius, Hagia Maria Sion Abbey (Jerusalem) |
|
3 |
||
22585 | 4 |
Output channels and timing messages. |
14815 | 5 |
*) |
6 |
||
7 |
signature BASIC_OUTPUT = |
|
8 |
sig |
|
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
9 |
type output = string |
18682
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
10 |
val writeln: string -> unit |
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
11 |
val priority: string -> unit |
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
12 |
val tracing: string -> unit |
216692feebab
removed special ERROR handling stuff (transform_error etc.);
wenzelm
parents:
17539
diff
changeset
|
13 |
val warning: string -> unit |
22826 | 14 |
val tolerate_legacy_features: bool ref |
15 |
val legacy_feature: string -> unit |
|
25686
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
16 |
val cond_timeit: bool -> string -> (unit -> 'a) -> 'a |
14815 | 17 |
val timeit: (unit -> 'a) -> 'a |
18 |
val timeap: ('a -> 'b) -> 'a -> 'b |
|
19 |
val timeap_msg: string -> ('a -> 'b) -> 'a -> 'b |
|
25686
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
20 |
val timing: bool ref |
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
21 |
val time_accumulator: string -> ('a -> 'b) -> 'a -> 'b |
14815 | 22 |
end; |
23 |
||
24 |
signature OUTPUT = |
|
25 |
sig |
|
26 |
include BASIC_OUTPUT |
|
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
27 |
val default_output: string -> output * int |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
28 |
val default_escape: output -> string |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
29 |
val add_mode: string -> (string -> output * int) -> (output -> string) -> unit |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
30 |
val output_width: string -> output * int |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
31 |
val output: string -> output |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
32 |
val escape: output -> string |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
33 |
val std_output: output -> unit |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
34 |
val std_error: output -> unit |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
35 |
val writeln_default: output -> unit |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
36 |
val writeln_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
37 |
val priority_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
38 |
val tracing_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
39 |
val warning_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
40 |
val error_fn: (output -> unit) ref |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
41 |
val debug_fn: (output -> unit) ref |
25845
c448a5f15f31
added explicit prompt channel (prompt_fn/prompt);
wenzelm
parents:
25686
diff
changeset
|
42 |
val prompt_fn: (output -> unit) ref |
27605 | 43 |
val status_fn: (output -> unit) ref |
25845
c448a5f15f31
added explicit prompt channel (prompt_fn/prompt);
wenzelm
parents:
25686
diff
changeset
|
44 |
val error_msg: string -> unit |
c448a5f15f31
added explicit prompt channel (prompt_fn/prompt);
wenzelm
parents:
25686
diff
changeset
|
45 |
val prompt: string -> unit |
27605 | 46 |
val status: string -> unit |
22585 | 47 |
val debugging: bool ref |
48 |
val no_warnings: ('a -> 'b) -> 'a -> 'b |
|
22130 | 49 |
val debug: (unit -> string) -> unit |
16726
4399016bf13e
added time_accumulator and accumulated_time supercede
wenzelm
parents:
16683
diff
changeset
|
50 |
val accumulated_time: unit -> unit |
14815 | 51 |
end; |
52 |
||
53 |
structure Output: OUTPUT = |
|
54 |
struct |
|
55 |
||
23616 | 56 |
(** print modes **) |
14881 | 57 |
|
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
58 |
type output = string; (*raw system output*) |
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
59 |
|
23616 | 60 |
fun default_output s = (s, size s); |
23660
18765718cf62
type output = string indicates raw system output;
wenzelm
parents:
23616
diff
changeset
|
61 |
fun default_escape (s: output) = s; |
14815 | 62 |
|
23616 | 63 |
local |
64 |
val default = {output = default_output, escape = default_escape}; |
|
65 |
val modes = ref (Symtab.make [("", default)]); |
|
66 |
in |
|
23922
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
67 |
fun add_mode name output escape = CRITICAL (fn () => |
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
68 |
change modes (Symtab.update_new (name, {output = output, escape = escape}))); |
23616 | 69 |
fun get_mode () = |
24612 | 70 |
the_default default (Library.get_first (Symtab.lookup (! modes)) (print_mode_value ())); |
23616 | 71 |
end; |
14815 | 72 |
|
19265 | 73 |
fun output_width x = #output (get_mode ()) x; |
14815 | 74 |
val output = #1 o output_width; |
23727 | 75 |
|
23616 | 76 |
fun escape x = #escape (get_mode ()) x; |
14815 | 77 |
|
78 |
||
79 |
||
80 |
(** output channels **) |
|
81 |
||
14984 | 82 |
(* output primitives -- normally NOT used directly!*) |
83 |
||
24058 | 84 |
fun std_output s = NAMED_CRITICAL "IO" (fn () => |
23922
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
85 |
(TextIO.output (TextIO.stdOut, s); TextIO.flushOut TextIO.stdOut)); |
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
86 |
|
24058 | 87 |
fun std_error s = NAMED_CRITICAL "IO" (fn () => |
23922
707639e9497d
marked some CRITICAL sections (for multithreading);
wenzelm
parents:
23862
diff
changeset
|
88 |
(TextIO.output (TextIO.stdErr, s); TextIO.flushOut TextIO.stdErr)); |
14815 | 89 |
|
27605 | 90 |
fun writeln_default "" = () |
91 |
| writeln_default s = std_output (suffix "\n" s); |
|
14815 | 92 |
|
14984 | 93 |
|
94 |
(* Isabelle output channels *) |
|
95 |
||
14815 | 96 |
val writeln_fn = ref writeln_default; |
97 |
val priority_fn = ref (fn s => ! writeln_fn s); |
|
98 |
val tracing_fn = ref (fn s => ! writeln_fn s); |
|
99 |
val warning_fn = ref (std_output o suffix "\n" o prefix_lines "### "); |
|
100 |
val error_fn = ref (std_output o suffix "\n" o prefix_lines "*** "); |
|
15190 | 101 |
val debug_fn = ref (std_output o suffix "\n" o prefix_lines "::: "); |
25845
c448a5f15f31
added explicit prompt channel (prompt_fn/prompt);
wenzelm
parents:
25686
diff
changeset
|
102 |
val prompt_fn = ref std_output; |
30670
9bb872667af6
suppress status output for traditional tty modes (including Proof General);
wenzelm
parents:
30320
diff
changeset
|
103 |
val status_fn = ref (fn _: string => ()); |
14815 | 104 |
|
105 |
fun writeln s = ! writeln_fn (output s); |
|
106 |
fun priority s = ! priority_fn (output s); |
|
107 |
fun tracing s = ! tracing_fn (output s); |
|
108 |
fun warning s = ! warning_fn (output s); |
|
25845
c448a5f15f31
added explicit prompt channel (prompt_fn/prompt);
wenzelm
parents:
25686
diff
changeset
|
109 |
fun error_msg s = ! error_fn (output s); |
c448a5f15f31
added explicit prompt channel (prompt_fn/prompt);
wenzelm
parents:
25686
diff
changeset
|
110 |
fun prompt s = ! prompt_fn (output s); |
27605 | 111 |
fun status s = ! status_fn (output s); |
15190 | 112 |
|
22826 | 113 |
val tolerate_legacy_features = ref true; |
114 |
fun legacy_feature s = |
|
26291 | 115 |
(if ! tolerate_legacy_features then warning else error) ("Legacy feature! " ^ s); |
22826 | 116 |
|
16191 | 117 |
fun no_warnings f = setmp warning_fn (K ()) f; |
118 |
||
22130 | 119 |
val debugging = ref false; |
120 |
fun debug s = if ! debugging then ! debug_fn (output (s ())) else () |
|
15190 | 121 |
|
14815 | 122 |
|
123 |
||
124 |
(** timing **) |
|
125 |
||
25686
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
126 |
(*conditional timing with message*) |
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
127 |
fun cond_timeit flag msg e = |
14815 | 128 |
if flag then |
23862 | 129 |
let |
130 |
val start = start_timing (); |
|
25686
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
131 |
val result = Exn.capture e (); |
30187
b92b3375e919
end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents:
29606
diff
changeset
|
132 |
val end_msg = #message (end_timing start); |
25686
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
133 |
val _ = warning (if msg = "" then end_msg else msg ^ "\n" ^ end_msg); |
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
134 |
in Exn.release result end |
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
135 |
else e (); |
25667 | 136 |
|
23862 | 137 |
(*unconditional timing*) |
25686
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
138 |
fun timeit e = cond_timeit true "" e; |
14815 | 139 |
|
140 |
(*timed application function*) |
|
141 |
fun timeap f x = timeit (fn () => f x); |
|
25686
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
142 |
fun timeap_msg msg f x = cond_timeit true msg (fn () => f x); |
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
143 |
|
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
144 |
|
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
145 |
(*global timing mode*) |
bfa774974b6c
cond_timeit: added message argument, use Exn.capture/release;
wenzelm
parents:
25682
diff
changeset
|
146 |
val timing = ref false; |
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; |