src/Pure/POLY.ML
author paulson
Fri, 01 Nov 1996 15:15:39 +0100
changeset 2143 093bbe6d333b
parent 2141 c2aedd8169cd
child 2242 fa8c6c695a97
permissions -rw-r--r--
Replaced min by Int.min
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     1
(*  Title:      Pure/POLY
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1991  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
Compatibility file for Poly/ML (AHL release 1.88)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
open PolyML ExtendedIO;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
2141
c2aedd8169cd Now defines structure Int
paulson
parents: 1480
diff changeset
    12
structure Int =
c2aedd8169cd Now defines structure Int
paulson
parents: 1480
diff changeset
    13
  struct
c2aedd8169cd Now defines structure Int
paulson
parents: 1480
diff changeset
    14
  fun max (x, y) = if x < y then y else x : int;
c2aedd8169cd Now defines structure Int
paulson
parents: 1480
diff changeset
    15
  fun min (x, y) = if x < y then x else y : int;
c2aedd8169cd Now defines structure Int
paulson
parents: 1480
diff changeset
    16
  end;
c2aedd8169cd Now defines structure Int
paulson
parents: 1480
diff changeset
    17
c2aedd8169cd Now defines structure Int
paulson
parents: 1480
diff changeset
    18
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    19
(*A conditional timing function: applies f to () and, if the flag is true,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    20
  prints its runtime.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    22
fun cond_timeit flag f =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
  if flag then
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    24
    let val before = System.processtime()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    25
        val result = f()
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    26
        val both = real(System.processtime() - before) / 10.0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    27
    in  output(std_out, "Process time (incl GC): "^
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    28
                         makestring both ^ " secs\n");
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    29
        result
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    30
    end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    31
  else f();
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    32
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    33
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    34
(*Save function: in Poly/ML, ignores filename and commits to present file*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    35
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    36
fun xML filename banner = commit();
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    37
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    38
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    39
(*Interface for toplevel pretty printers, see also Pure/install_pp.ML*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    40
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    41
fun make_pp _ pprint (str, blk, brk, en) obj =
19
929ad32d63fc Pure/ROOT.ML
wenzelm
parents: 0
diff changeset
    42
  pprint obj (str, fn ind => blk (ind, false), fn wd => brk (wd, 0),
929ad32d63fc Pure/ROOT.ML
wenzelm
parents: 0
diff changeset
    43
    fn () => brk (99999, 0), en);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    44
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    45
66
1b14cd923772 /NJ,POLY/delete_file: new
lcp
parents: 58
diff changeset
    46
(*** File handling ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    47
100
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    48
local
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    49
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    50
(*These are functions from library.ML *)
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    51
fun take_suffix _ [] = ([], [])
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    52
  | take_suffix pred (x :: xs) =
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    53
      (case take_suffix pred xs of
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    54
         ([], sffx) => if pred x then ([], x :: sffx)
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    55
                                 else ([x], sffx)
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    56
       | (prfx, sffx) => (x :: prfx, sffx));
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    57
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    58
fun apr (f,y) x = f(x,y);
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    59
396
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
    60
fun seq (proc: 'a -> unit) : 'a list -> unit =
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
    61
  let fun seqf [] = ()
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
    62
        | seqf (x :: xs) = (proc x; seqf xs)
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
    63
  in seqf end;
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
    64
1437
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    65
fun radixpand num : int list =
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    66
  let fun radix (n, tail) =
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    67
    if n < 10 then n :: tail else radix (n div 10, (n mod 10) :: tail)
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    68
  in radix (num, []) end;
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    69
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    70
fun radixstring num =
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    71
  let fun chrof n = chr (ord "0" + n);
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    72
  in implode (map chrof (radixpand num)) end;
2ebbc23d49fa beautified file_info a bit
clasohm
parents: 1436
diff changeset
    73
100
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    74
in
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    75
1480
85ecd3439e01 made Isabelle compatible with SML/NJ 1.09
clasohm
parents: 1437
diff changeset
    76
(*Get time of last modification; if file doesn't exist return an empty string*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    77
fun file_info "" = ""
1480
85ecd3439e01 made Isabelle compatible with SML/NJ 1.09
clasohm
parents: 1437
diff changeset
    78
  | file_info name = radixstring (System.filedate name)  handle _ => "";
66
1b14cd923772 /NJ,POLY/delete_file: new
lcp
parents: 58
diff changeset
    79
73
075db6ac7f2f delete_file now has type string -> unit in both NJ and POLY,
clasohm
parents: 66
diff changeset
    80
(*Delete a file *)
075db6ac7f2f delete_file now has type string -> unit in both NJ and POLY,
clasohm
parents: 66
diff changeset
    81
fun delete_file name =
100
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    82
  let val (is, os) = ExtendedIO.execute ("rm " ^ name)
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    83
  in close_in is;
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    84
     close_out os
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    85
  end;
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    86
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    87
(*Get pathname of current working directory *)
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    88
fun pwd () =
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    89
  let val (is, os) = ExtendedIO.execute ("pwd")
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    90
      val (path, _) = take_suffix (apr(op=,"\n"))
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    91
                       (explode (ExtendedIO.input_line is)) (*remove newline *)
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    92
  in close_in is;
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    93
     close_out os;
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    94
     implode path
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    95
  end;
e95b98536b3d fixed a bug in POLY.ML: delete_file didn't close streams;
clasohm
parents: 73
diff changeset
    96
378
85ff48546a05 added use_string: string -> unit to execute ML commands passed in a string
clasohm
parents: 100
diff changeset
    97
85ff48546a05 added use_string: string -> unit to execute ML commands passed in a string
clasohm
parents: 100
diff changeset
    98
(*** ML command execution ***)
85ff48546a05 added use_string: string -> unit to execute ML commands passed in a string
clasohm
parents: 100
diff changeset
    99
396
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   100
val use_string =
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   101
  let fun exec command =
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   102
    let val firstLine = ref true;
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   103
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   104
        fun getLine () =
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   105
          if !firstLine
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   106
          then (firstLine := false; command)
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   107
          else raise Io "use_string: buffer exhausted"
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   108
    in PolyML.compiler (getLine, fn s => output (std_out, s)) () end
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   109
  in seq exec end;
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   110
18c9c28d0f7e changed use_string's type to string list -> unit because POLY can only
clasohm
parents: 378
diff changeset
   111
end;
1289
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   112
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   113
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   114
(*** System command execution ***)
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   115
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   116
(*Execute an Unix command which doesn't take any input from stdin and
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   117
  sends its output to stdout.*)
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   118
fun execute command =
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   119
  let val (is, os) =  ExtendedIO.execute command;
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   120
      val result = input (is, 999999);
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   121
  in close_out os;
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   122
     close_in is;
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   123
     result
2edd7a39d92a added "execute"
clasohm
parents: 396
diff changeset
   124
  end;