src/Pure/ML-Systems/mosml.ML
author wenzelm
Sat, 21 Mar 2009 15:08:00 +0100
changeset 30619 0226c07352db
parent 30187 b92b3375e919
child 30625 d53d1a16d5ee
permissions -rw-r--r--
added generic ML_Pretty interface;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/ML-Systems/mosml.ML
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
29284
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
     3
    Author:     Makarius
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
     4
17491
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
     5
Compatibility file for Moscow ML 2.01
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
     6
17491
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
     7
NOTE: saving images does not work; may run it interactively as follows:
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
     8
23826
463903573934 moved cd/pwd to ML compatibility layer (simplifies bootstrapping with Alice);
wenzelm
parents: 22252
diff changeset
     9
$ cd Isabelle/src/Pure
29284
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    10
$ isabelle-process RAW_ML_SYSTEM
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    11
> val ml_system = "mosml";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    12
> use "ML-Systems/mosml.ML";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    13
> use "ROOT.ML";
16470
051db5bb21b5 improved comment;
wenzelm
parents: 16469
diff changeset
    14
> Session.finish ();
23836
c6094fe98dfd adapted TextIO.inputLine;
wenzelm
parents: 23826
diff changeset
    15
> cd "../FOL";
16470
051db5bb21b5 improved comment;
wenzelm
parents: 16469
diff changeset
    16
> use "ROOT.ML";
24808
7c9a970d7ab5 fixed use_text;
wenzelm
parents: 24688
diff changeset
    17
> Session.finish ();
7c9a970d7ab5 fixed use_text;
wenzelm
parents: 24688
diff changeset
    18
> cd "../ZF";
7c9a970d7ab5 fixed use_text;
wenzelm
parents: 24688
diff changeset
    19
> use "ROOT.ML";
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    20
*)
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    21
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    22
(** ML system related **)
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    23
24597
cbf2c5cf335e added ml_system_fix_ints;
wenzelm
parents: 24329
diff changeset
    24
val ml_system_fix_ints = false;
cbf2c5cf335e added ml_system_fix_ints;
wenzelm
parents: 24329
diff changeset
    25
26474
94735cff132c added forget_structure;
wenzelm
parents: 26223
diff changeset
    26
fun forget_structure _ = ();
94735cff132c added forget_structure;
wenzelm
parents: 26223
diff changeset
    27
16517
4699288139f4 proper implementation of pointer_eq;
wenzelm
parents: 16502
diff changeset
    28
load "Obj";
29284
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    29
load "Word";
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    30
load "Bool";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    31
load "Int";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    32
load "Real";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    33
load "ListPair";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    34
load "OS";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    35
load "Process";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    36
load "FileSys";
21298
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
    37
load "IO";
29285
5cf577cb2253 provide structure CharVector;
wenzelm
parents: 29284
diff changeset
    38
load "CharVector";
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    39
28443
de653f1ad78b more robust treatment of Interrupt (cf. exn.ML);
wenzelm
parents: 28268
diff changeset
    40
exception Interrupt;
de653f1ad78b more robust treatment of Interrupt (cf. exn.ML);
wenzelm
parents: 28268
diff changeset
    41
23965
f93e509659c1 ML-Systems/exn.ML, ML-Systems/multithreading_dummy.ML;
wenzelm
parents: 23921
diff changeset
    42
use "ML-Systems/exn.ML";
25732
308315ee2b6d added ML-Systems/universal.ML;
wenzelm
parents: 24808
diff changeset
    43
use "ML-Systems/universal.ML";
28489
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
    44
use "ML-Systems/thread_dummy.ML";
24688
a5754ca5c510 replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
wenzelm
parents: 24597
diff changeset
    45
use "ML-Systems/multithreading.ML";
a5754ca5c510 replaced interrupt_timeout by TimeLimit.timeLimit (available on SML/NJ and Poly/ML 5.1);
wenzelm
parents: 24597
diff changeset
    46
use "ML-Systems/time_limit.ML";
28268
ac8431ecd57e use_text/use_file now depend on explicit ML name space;
wenzelm
parents: 27003
diff changeset
    47
use "ML-Systems/ml_name_space.ML";
30619
0226c07352db added generic ML_Pretty interface;
wenzelm
parents: 30187
diff changeset
    48
use "ML-Systems/ml_pretty.ML";
23921
947152add153 added compatibility file for ML systems without multithreading;
wenzelm
parents: 23836
diff changeset
    49
947152add153 added compatibility file for ML systems without multithreading;
wenzelm
parents: 23836
diff changeset
    50
16517
4699288139f4 proper implementation of pointer_eq;
wenzelm
parents: 16502
diff changeset
    51
(*low-level pointer equality*)
4699288139f4 proper implementation of pointer_eq;
wenzelm
parents: 16502
diff changeset
    52
local val cast : 'a -> int = Obj.magic
4699288139f4 proper implementation of pointer_eq;
wenzelm
parents: 16502
diff changeset
    53
in fun pointer_eq (x:'a, y:'a) = (cast x = cast y) end;
4699288139f4 proper implementation of pointer_eq;
wenzelm
parents: 16502
diff changeset
    54
16469
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    55
(*proper implementation available?*)
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    56
structure IntInf =
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    57
struct
24808
7c9a970d7ab5 fixed use_text;
wenzelm
parents: 24688
diff changeset
    58
  fun divMod (x, y) = (x div y, x mod y);
29284
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    59
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    60
  local
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    61
    fun log 1 a = a
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    62
      | log n a = log (n div 2) (a + 1);
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    63
  in
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    64
    fun log2 n = if n > 0 then log n 0 else raise Domain;
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    65
  end;
4588e0070d4c isabelle-process;
wenzelm
parents: 28489
diff changeset
    66
16469
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    67
  open Int;
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    68
end;
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    69
27003
aae9b369b338 added Substring.full;
wenzelm
parents: 26884
diff changeset
    70
structure Substring =
aae9b369b338 added Substring.full;
wenzelm
parents: 26884
diff changeset
    71
struct
aae9b369b338 added Substring.full;
wenzelm
parents: 26884
diff changeset
    72
  open Substring;
aae9b369b338 added Substring.full;
wenzelm
parents: 26884
diff changeset
    73
  val full = all;
aae9b369b338 added Substring.full;
wenzelm
parents: 26884
diff changeset
    74
end;
aae9b369b338 added Substring.full;
wenzelm
parents: 26884
diff changeset
    75
16469
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    76
structure Real =
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    77
struct
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    78
  open Real;
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    79
  val realFloor = real o floor;
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    80
end;
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    81
17491
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
    82
structure String =
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
    83
struct
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
    84
  fun isSuffix s1 s2 =
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
    85
    let val n1 = size s1 and n2 = size s2
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
    86
    in if n1 = n2 then s1 = s2 else n1 <= n2 andalso String.substring (s2, n2 - n1, n1) = s1 end;
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
    87
  open String;
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
    88
end;
2bd5a6e26e1e added String.isSuffix;
wenzelm
parents: 16993
diff changeset
    89
16469
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    90
structure Time =
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    91
struct
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    92
  open Time;
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    93
  fun toString t = Time.toString t
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    94
    handle Overflow => Real.toString (Time.toReal t);   (*workaround Y2004 bug*)
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    95
end;
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    96
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    97
structure OS =
16469
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
    98
struct
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
    99
  open OS
28489
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   100
  structure Process =
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   101
  struct
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   102
    open Process
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   103
    fun sleep _ = raise Fail "OS.Process.sleep undefined"
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   104
  end;
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   105
  structure FileSys = FileSys
16469
7e27422c603e some minor adaptions to make it work again;
wenzelm
parents: 16266
diff changeset
   106
end;
16993
wenzelm
parents: 16681
diff changeset
   107
22252
ce77e9622002 pervasive exception Option;
wenzelm
parents: 22144
diff changeset
   108
exception Option = Option.Option;
ce77e9622002 pervasive exception Option;
wenzelm
parents: 22144
diff changeset
   109
ce77e9622002 pervasive exception Option;
wenzelm
parents: 22144
diff changeset
   110
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   111
(*limit the printing depth*)
24329
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   112
local
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   113
  val depth = ref 10;
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   114
in
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   115
  fun get_print_depth () = ! depth;
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   116
  fun print_depth n =
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   117
   (depth := n;
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   118
    Meta.printDepth := n div 2;
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   119
    Meta.printLength := n);
f31594168d27 ML system provides get_print_depth;
wenzelm
parents: 24290
diff changeset
   120
end;
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   121
24290
5607b8b752bb tuned comments;
wenzelm
parents: 23965
diff changeset
   122
(*interface for toplevel pretty printers, see also Pure/pure_setup.ML*)
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   123
(*the documentation refers to an installPP but I couldn't fine it!*)
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   124
fun make_pp path pprint = ();
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   125
fun install_pp _ = ();
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   126
16681
d54dfd724b35 dummy exception_trace;
wenzelm
parents: 16660
diff changeset
   127
(*dummy implementation*)
d54dfd724b35 dummy exception_trace;
wenzelm
parents: 16660
diff changeset
   128
fun ml_prompts p1 p2 = ();
d54dfd724b35 dummy exception_trace;
wenzelm
parents: 16660
diff changeset
   129
d54dfd724b35 dummy exception_trace;
wenzelm
parents: 16660
diff changeset
   130
(*dummy implementation*)
16660
76613dff2c9a added profiler interface (dummy);
wenzelm
parents: 16517
diff changeset
   131
fun profile (n: int) f x = f x;
76613dff2c9a added profiler interface (dummy);
wenzelm
parents: 16517
diff changeset
   132
18384
fa38cca42913 added dummy 'print' to non-polyml systems
haftmann
parents: 17824
diff changeset
   133
(*dummy implementation*)
16681
d54dfd724b35 dummy exception_trace;
wenzelm
parents: 16660
diff changeset
   134
fun exception_trace f = f ();
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   135
18384
fa38cca42913 added dummy 'print' to non-polyml systems
haftmann
parents: 17824
diff changeset
   136
(*dummy implementation*)
fa38cca42913 added dummy 'print' to non-polyml systems
haftmann
parents: 17824
diff changeset
   137
fun print x = x;
fa38cca42913 added dummy 'print' to non-polyml systems
haftmann
parents: 17824
diff changeset
   138
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   139
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   140
(** Compiler-independent timing functions **)
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   141
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   142
load "Timer";
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   143
21298
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   144
fun start_timing () =
30187
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   145
  let
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   146
    val timer = Timer.startCPUTimer ();
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   147
    val time = Timer.checkCPUTimer timer;
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   148
  in (timer, time) end;
21298
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   149
30187
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   150
fun end_timing (timer, {gc, sys, usr}) =
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   151
  let
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   152
    open Time;  (*...for Time.toString, Time.+ and Time.- *)
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   153
    val {gc = gc2, sys = sys2, usr = usr2} = Timer.checkCPUTimer timer;
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   154
    val user = usr2 - usr + gc2 - gc;
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   155
    val all = user + sys2 - sys;
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   156
    val message = "User " ^ toString user ^ "  All "^ toString all ^ " secs" handle Time => "";
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 29285
diff changeset
   157
  in {message = message, user = user, all = all} end;
21298
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   158
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   159
fun check_timer timer =
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   160
  let val {sys, usr, gc} = Timer.checkCPUTimer timer
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   161
  in (sys, usr, gc) end;
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   162
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   163
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   164
(* SML basis library fixes *)
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   165
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   166
structure TextIO =
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   167
struct
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   168
  fun canInput _ = raise IO.Io {cause = Fail "undefined", function = "canInput", name = ""};
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   169
  open TextIO;
23836
c6094fe98dfd adapted TextIO.inputLine;
wenzelm
parents: 23826
diff changeset
   170
  fun inputLine is =
c6094fe98dfd adapted TextIO.inputLine;
wenzelm
parents: 23826
diff changeset
   171
    let val s = TextIO.inputLine is
c6094fe98dfd adapted TextIO.inputLine;
wenzelm
parents: 23826
diff changeset
   172
    in if s = "" then NONE else SOME s end;
28489
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   173
  fun getOutstream _ = ();
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   174
  structure StreamIO =
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   175
  struct
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   176
    fun setBufferMode _ = ();
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   177
  end
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   178
end;
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   179
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   180
structure IO =
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   181
struct
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   182
  open IO;
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   183
  val BLOCK_BUF = ();
21298
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   184
end;
6d2306b2376d tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 21280
diff changeset
   185
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   186
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   187
(* ML command execution *)
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   188
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   189
(*Can one redirect 'use' directly to an instream?*)
28268
ac8431ecd57e use_text/use_file now depend on explicit ML name space;
wenzelm
parents: 27003
diff changeset
   190
fun use_text (tune: string -> string) _ _ _ _ _ txt =
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   191
  let
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   192
    val tmp_name = FileSys.tmpName ();
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   193
    val tmp_file = TextIO.openOut tmp_name;
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   194
  in
24808
7c9a970d7ab5 fixed use_text;
wenzelm
parents: 24688
diff changeset
   195
    TextIO.output (tmp_file, tune txt);
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   196
    TextIO.closeOut tmp_file;
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   197
    use tmp_name;
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   198
    FileSys.remove tmp_name
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   199
  end;
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   200
28268
ac8431ecd57e use_text/use_file now depend on explicit ML name space;
wenzelm
parents: 27003
diff changeset
   201
fun use_file _ _ _ _ _ name = use name;
21770
ea6f846d8c4b added use_file;
wenzelm
parents: 21298
diff changeset
   202
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   203
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   204
16993
wenzelm
parents: 16681
diff changeset
   205
(** interrupts **)      (*Note: may get into race conditions*)
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   206
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   207
(* FIXME proper implementation available? *)
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   208
26084
a7475459c740 replaced ignore/raise_interrupt by more flexible (un)interruptible combinators;
wenzelm
parents: 25732
diff changeset
   209
fun interruptible f x = f x;
a7475459c740 replaced ignore/raise_interrupt by more flexible (un)interruptible combinators;
wenzelm
parents: 25732
diff changeset
   210
fun uninterruptible f x = f (fn (g: 'c -> 'd) => g) x;
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   211
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   212
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   213
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   214
(** OS related **)
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   215
26223
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   216
(*dummy implementation*)
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   217
structure Posix =
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   218
struct
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   219
  structure ProcEnv =
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   220
  struct
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   221
    fun getpid () = 0;
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   222
  end;  
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   223
end;
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   224
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   225
local
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   226
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   227
fun read_file name =
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   228
  let val is = TextIO.openIn name
26504
6e87c0a60104 before close: Exn.capture/release;
wenzelm
parents: 26474
diff changeset
   229
  in Exn.release (Exn.capture TextIO.inputAll is before TextIO.closeIn is) end;
26223
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   230
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   231
fun write_file name txt =
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   232
  let val os = TextIO.openOut name
26504
6e87c0a60104 before close: Exn.capture/release;
wenzelm
parents: 26474
diff changeset
   233
  in Exn.release (Exn.capture TextIO.output (os, txt) before TextIO.closeOut os) end;
26223
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   234
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   235
in
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   236
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   237
fun system_out script =
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   238
  let
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   239
    val script_name = OS.FileSys.tmpName ();
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   240
    val _ = write_file script_name script;
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   241
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   242
    val output_name = OS.FileSys.tmpName ();
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   243
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   244
    val status =
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   245
      OS.Process.system ("perl -w \"$ISABELLE_HOME/lib/scripts/system.pl\" nogroup " ^
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   246
        script_name ^ " /dev/null " ^ output_name);
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   247
    val rc = if status = OS.Process.success then 0 else 1;
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   248
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   249
    val output = read_file output_name handle IO.Io _ => "";
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   250
    val _ = OS.FileSys.remove script_name handle OS.SysErr _ => ();
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   251
    val _ = OS.FileSys.remove output_name handle OS.SysErr _ => ();
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   252
  in (output, rc) end;
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   253
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   254
end;
f4a1a96cc07c specific system_out (MosML lacks structure Posix);
wenzelm
parents: 26220
diff changeset
   255
23826
463903573934 moved cd/pwd to ML compatibility layer (simplifies bootstrapping with Alice);
wenzelm
parents: 22252
diff changeset
   256
val cd = OS.FileSys.chDir;
463903573934 moved cd/pwd to ML compatibility layer (simplifies bootstrapping with Alice);
wenzelm
parents: 22252
diff changeset
   257
val pwd = OS.FileSys.getDir;
463903573934 moved cd/pwd to ML compatibility layer (simplifies bootstrapping with Alice);
wenzelm
parents: 22252
diff changeset
   258
28489
404649964f09 removed obsolete Posix/Signal compatibility wrappers;
wenzelm
parents: 28443
diff changeset
   259
val process_id = Int.toString o Posix.ProcEnv.getpid;
17824
36b2978d339a added string_of_pid;
wenzelm
parents: 17491
diff changeset
   260
9254
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   261
fun getenv var =
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   262
  (case Process.getEnv var of
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   263
    NONE => ""
f8a0e8b9bcd8 Compatibility file for Moscow ML 2.00;
wenzelm
parents:
diff changeset
   264
  | SOME txt => txt);