author | haftmann |
Thu, 15 Sep 2005 08:16:22 +0200 | |
changeset 17401 | 9147c880ada6 |
parent 16681 | d54dfd724b35 |
child 17511 | 51314f4bd01d |
permissions | -rw-r--r-- |
4403 | 1 |
(* Title: Pure/ML-Systems/smlnj.ML |
2 |
ID: $Id$ |
|
3 |
Author: Carsten Clasohm and Markus Wenzel, TU Muenchen |
|
4 |
||
5708 | 5 |
Compatibility file for Standard ML of New Jersey 110 or later. |
4403 | 6 |
*) |
7 |
||
12874
368966ceafe5
ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
12581
diff
changeset
|
8 |
(case #version_id (Compiler.version) of |
368966ceafe5
ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
12581
diff
changeset
|
9 |
[110, x] => if x >= 35 then use "ML-Systems/smlnj-compiler.ML" else () |
368966ceafe5
ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
12581
diff
changeset
|
10 |
| _ => ()); |
368966ceafe5
ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
12581
diff
changeset
|
11 |
|
16542 | 12 |
|
4403 | 13 |
(** ML system related **) |
14 |
||
16542 | 15 |
(*low-level pointer equality*) |
16502 | 16 |
|
16542 | 17 |
(*dummy version -- may get overridden in smlnj-ptreql.ML*) |
18 |
fun pointer_eq (x:'a, y) = false; |
|
16502 | 19 |
|
16528 | 20 |
(case #version_id (Compiler.version) of |
21 |
[110, x] => if x >= 49 then use "ML-Systems/smlnj-ptreql.ML" else () |
|
22 |
| _ => ()); |
|
23 |
||
16502 | 24 |
|
4403 | 25 |
(* restore old-style character / string functions *) |
26 |
||
10725 | 27 |
val ord = SML90.ord; |
28 |
val chr = SML90.chr; |
|
29 |
val explode = SML90.explode; |
|
30 |
val implode = SML90.implode; |
|
4403 | 31 |
|
32 |
||
33 |
(* New Jersey ML parameters *) |
|
34 |
||
35 |
val _ = |
|
36 |
(Compiler.Control.Print.printLength := 1000; |
|
37 |
Compiler.Control.Print.printDepth := 350; |
|
38 |
Compiler.Control.Print.stringDepth := 250; |
|
12581 | 39 |
Compiler.Control.Print.signatures := 2; |
40 |
Compiler.Control.MC.matchRedundantError := false); |
|
4403 | 41 |
|
42 |
||
43 |
(* Poly/ML emulation *) |
|
44 |
||
45 |
fun quit () = exit 0; |
|
46 |
||
47 |
(*limit the printing depth -- divided by 2 for comparibility with Poly/ML*) |
|
48 |
fun print_depth n = |
|
49 |
(Compiler.Control.Print.printDepth := n div 2; |
|
50 |
Compiler.Control.Print.printLength := n); |
|
51 |
||
52 |
||
5816 | 53 |
(* compiler-independent timing functions *) |
4403 | 54 |
|
14519
4ca3608fdf4f
Added support for the newer versions of SML/NJ, which break several of the
skalberg
parents:
12990
diff
changeset
|
55 |
(case #version_id (Compiler.version) of |
14656 | 56 |
[110, x] => if x >= 44 |
16542 | 57 |
then use "ML-Systems/cpu-timer-basis.ML" |
58 |
else use "ML-Systems/cpu-timer-gc.ML" |
|
14520 | 59 |
| _ => use "ML-Systems/cpu-timer-gc.ML"); |
4403 | 60 |
|
61 |
||
16660 | 62 |
(*prompts*) |
4977 | 63 |
fun ml_prompts p1 p2 = |
64 |
(Compiler.Control.primaryPrompt := p1; Compiler.Control.secondaryPrompt := p2); |
|
65 |
||
16681 | 66 |
(*dummy impelemtation*) |
67 |
fun profile (n: int) f x = f x; |
|
68 |
||
69 |
(*dummy impelemtation*) |
|
70 |
fun exception_trace f = f (); |
|
4977 | 71 |
|
14519
4ca3608fdf4f
Added support for the newer versions of SML/NJ, which break several of the
skalberg
parents:
12990
diff
changeset
|
72 |
(case #version_id (Compiler.version) of |
14656 | 73 |
[110, x] => if x >= 44 |
16542 | 74 |
then use "ML-Systems/smlnj-basis-compat.ML" |
75 |
else () |
|
14519
4ca3608fdf4f
Added support for the newer versions of SML/NJ, which break several of the
skalberg
parents:
12990
diff
changeset
|
76 |
| _ => ()); |
4ca3608fdf4f
Added support for the newer versions of SML/NJ, which break several of the
skalberg
parents:
12990
diff
changeset
|
77 |
|
16681 | 78 |
|
4403 | 79 |
(* toplevel pretty printing (see also Pure/install_pp.ML) *) |
80 |
||
14519
4ca3608fdf4f
Added support for the newer versions of SML/NJ, which break several of the
skalberg
parents:
12990
diff
changeset
|
81 |
(case #version_id (Compiler.version) of |
14656 | 82 |
[110, x] => if x >= 44 |
16542 | 83 |
then use "ML-Systems/smlnj-pp-new.ML" |
84 |
else use "ML-Systems/smlnj-pp-old.ML" |
|
14520 | 85 |
| _ => use "ML-Systems/smlnj-pp-old.ML"); |
4403 | 86 |
|
87 |
fun install_pp (path, pp) = Compiler.PPTable.install_pp path pp; |
|
88 |
||
89 |
||
90 |
(* ML command execution *) |
|
91 |
||
10914 | 92 |
fun use_text (print, err) verbose txt = |
5090 | 93 |
let |
94 |
val ref out_orig = Compiler.Control.Print.out; |
|
95 |
||
96 |
val out_buffer = ref ([]: string list); |
|
97 |
val out = {say = (fn s => out_buffer := s :: ! out_buffer), flush = (fn () => ())}; |
|
10914 | 98 |
fun output () = |
7890 | 99 |
let val str = implode (rev (! out_buffer)) |
10914 | 100 |
in String.substring (str, 0, Int.max (0, size str - 1)) end; |
5090 | 101 |
in |
102 |
Compiler.Control.Print.out := out; |
|
103 |
Compiler.Interact.useStream (TextIO.openString txt) handle exn => |
|
10914 | 104 |
(Compiler.Control.Print.out := out_orig; err (output ()); raise exn); |
5090 | 105 |
Compiler.Control.Print.out := out_orig; |
10914 | 106 |
if verbose then print (output ()) else () |
5090 | 107 |
end; |
4403 | 108 |
|
109 |
||
110 |
||
5816 | 111 |
(** interrupts **) |
112 |
||
12990 | 113 |
exception Interrupt; |
114 |
||
5816 | 115 |
local |
116 |
||
12990 | 117 |
fun capture f x = ((f x): unit; NONE) handle exn => SOME exn; |
5816 | 118 |
|
12990 | 119 |
fun release NONE = () |
120 |
| release (SOME exn) = raise exn; |
|
5816 | 121 |
|
122 |
in |
|
123 |
||
12990 | 124 |
fun ignore_interrupt f x = |
5816 | 125 |
let |
12990 | 126 |
val old_handler = Signals.setHandler (Signals.sigINT, Signals.IGNORE); |
127 |
val result = capture f x; |
|
128 |
val _ = Signals.setHandler (Signals.sigINT, old_handler); |
|
129 |
in release result end; |
|
5816 | 130 |
|
12990 | 131 |
fun raise_interrupt f x = |
132 |
let |
|
5816 | 133 |
val interrupted = ref false; |
12990 | 134 |
val result = ref NONE; |
135 |
val old_handler = Signals.inqHandler Signals.sigINT; |
|
5816 | 136 |
in |
12990 | 137 |
SMLofNJ.Cont.callcc (fn cont => |
138 |
(Signals.setHandler (Signals.sigINT, Signals.HANDLER (fn _ => (interrupted := true; cont))); |
|
139 |
result := capture f x)); |
|
140 |
Signals.setHandler (Signals.sigINT, old_handler); |
|
141 |
if ! interrupted then raise Interrupt else release (! result) |
|
142 |
end; |
|
5816 | 143 |
|
144 |
end; |
|
145 |
||
16542 | 146 |
(** Signal handling: emulation of the Poly/ML Signal structure. Note that types |
15702
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
147 |
Posix.Signal.signal and Signals.signal differ **) |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
148 |
|
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
149 |
structure IsaSignal = |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
150 |
struct |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
151 |
|
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
152 |
datatype sig_handle = SIG_DFL | SIG_IGN | SIG_HANDLE of Signals.signal -> unit; |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
153 |
|
16542 | 154 |
(*From the SML/NJ documentation: "HANDLER(f) installs a handler for a |
155 |
signal. When signal is delivered to the process, the execution state |
|
156 |
of the current thread will be bundled up as a continuation k, then |
|
157 |
f(signal,n,k) will be called. The number n is the number of times |
|
158 |
signal has been signalled since the last time f was invoked for it."*) |
|
15702
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
159 |
|
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
160 |
fun toAction SIG_DFL = Signals.DEFAULT |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
161 |
| toAction SIG_IGN = Signals.IGNORE |
16542 | 162 |
| toAction (SIG_HANDLE iu) = |
15702
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
163 |
Signals.HANDLER (fn (signo,_,cont) => (iu signo; cont)); |
16542 | 164 |
|
15702
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
165 |
(*The types are correct, but I'm not sure about the semantics!*) |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
166 |
fun fromAction Signals.DEFAULT = SIG_DFL |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
167 |
| fromAction Signals.IGNORE = SIG_IGN |
16542 | 168 |
| fromAction (Signals.HANDLER f) = |
15702
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
169 |
SIG_HANDLE (fn signo => SMLofNJ.Cont.callcc (fn k => (f (signo,0,k); ()))); |
16542 | 170 |
|
15702
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
171 |
(*Poly/ML version has type int * sig_handle -> sig_handle*) |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
172 |
fun signal (signo, sh) = fromAction (Signals.setHandler (signo, toAction sh)); |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
173 |
|
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
174 |
val usr1 = UnixSignals.sigUSR1 |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
175 |
val usr2 = UnixSignals.sigUSR2 |
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
176 |
|
2677db44c795
new signalling primmitives for sml/nj compatibility
paulson
parents:
14981
diff
changeset
|
177 |
end; |
5816 | 178 |
|
179 |
||
4403 | 180 |
(** OS related **) |
181 |
||
182 |
(* system command execution *) |
|
183 |
||
184 |
(*execute Unix command which doesn't take any input from stdin and |
|
185 |
sends its output to stdout; could be done more easily by Unix.execute, |
|
186 |
but that function doesn't use the PATH*) |
|
187 |
fun execute command = |
|
188 |
let |
|
189 |
val tmp_name = OS.FileSys.tmpName (); |
|
190 |
val is = (OS.Process.system (command ^ " > " ^ tmp_name); TextIO.openIn tmp_name); |
|
191 |
val result = TextIO.inputAll is; |
|
192 |
in |
|
193 |
TextIO.closeIn is; |
|
194 |
OS.FileSys.remove tmp_name; |
|
195 |
result |
|
196 |
end; |
|
197 |
||
7855 | 198 |
(*plain version; with return code*) |
12990 | 199 |
val system = OS.Process.system: string -> int; |
7855 | 200 |
|
4403 | 201 |
|
202 |
(* getenv *) |
|
203 |
||
204 |
fun getenv var = |
|
205 |
(case OS.Process.getEnv var of |
|
206 |
NONE => "" |
|
207 |
| SOME txt => txt); |