author | wenzelm |
Fri, 23 May 2008 21:18:47 +0200 | |
changeset 26977 | e736139b553d |
parent 26946 | 0b6eff8c088d |
child 26980 | f7f48bb9a025 |
permissions | -rw-r--r-- |
6118 | 1 |
(* Title: Pure/General/file.ML |
5009 | 2 |
ID: $Id$ |
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
5 |
File system operations. |
|
6 |
*) |
|
7 |
||
8 |
signature FILE = |
|
9 |
sig |
|
16261 | 10 |
val platform_path: Path.T -> string |
11 |
val shell_path: Path.T -> string |
|
6224 | 12 |
val cd: Path.T -> unit |
13 |
val pwd: unit -> Path.T |
|
14 |
val full_path: Path.T -> Path.T |
|
6182 | 15 |
val tmp_path: Path.T -> Path.T |
16261 | 16 |
val isatool: string -> int |
17 |
val system_command: string -> unit |
|
23861
72bb3494746f
replaced info by ident (for full identification, potentially content-based);
wenzelm
parents:
23826
diff
changeset
|
18 |
eqtype ident |
23874 | 19 |
val rep_ident: ident -> string |
23861
72bb3494746f
replaced info by ident (for full identification, potentially content-based);
wenzelm
parents:
23826
diff
changeset
|
20 |
val ident: Path.T -> ident option |
17826 | 21 |
val exists: Path.T -> bool |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
19960
diff
changeset
|
22 |
val check: Path.T -> unit |
17826 | 23 |
val rm: Path.T -> unit |
24 |
val mkdir: Path.T -> unit |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
25 |
val open_input: (TextIO.instream -> 'a) -> Path.T -> 'a |
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
26 |
val open_output: (TextIO.outstream -> 'a) -> Path.T -> 'a |
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
27 |
val open_append: (TextIO.outstream -> 'a) -> Path.T -> 'a |
6182 | 28 |
val read: Path.T -> string |
29 |
val write: Path.T -> string -> unit |
|
30 |
val append: Path.T -> string -> unit |
|
16713 | 31 |
val write_list: Path.T -> string list -> unit |
32 |
val append_list: Path.T -> string list -> unit |
|
16603 | 33 |
val eq: Path.T * Path.T -> bool |
6182 | 34 |
val copy: Path.T -> Path.T -> unit |
16261 | 35 |
val copy_dir: Path.T -> Path.T -> unit |
5009 | 36 |
end; |
37 |
||
38 |
structure File: FILE = |
|
39 |
struct |
|
40 |
||
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
41 |
(* system path representations *) |
6224 | 42 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
43 |
val platform_path = Path.implode o Path.expand; |
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
44 |
val shell_path = enclose "'" "'" o Path.implode o Path.expand; |
6224 | 45 |
|
46 |
||
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
47 |
(* current working directory *) |
6224 | 48 |
|
23826
463903573934
moved cd/pwd to ML compatibility layer (simplifies bootstrapping with Alice);
wenzelm
parents:
22145
diff
changeset
|
49 |
val cd = cd o platform_path; |
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
50 |
val pwd = Path.explode o pwd; |
6224 | 51 |
|
16261 | 52 |
fun full_path path = |
26946
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
53 |
if Path.is_absolute path then path |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
54 |
else Path.append (pwd ()) path; |
5009 | 55 |
|
6182 | 56 |
|
57 |
(* tmp_path *) |
|
58 |
||
59 |
fun tmp_path path = |
|
60 |
Path.append (Path.variable "ISABELLE_TMP") (Path.base path); |
|
5009 | 61 |
|
62 |
||
16261 | 63 |
(* system commands *) |
64 |
||
65 |
fun isatool cmd = system ("\"$ISATOOL\" " ^ cmd); |
|
66 |
||
67 |
fun system_command cmd = |
|
68 |
if system cmd <> 0 then error ("System command failed: " ^ cmd) |
|
69 |
else (); |
|
70 |
||
71 |
||
72 |
(* directory entries *) |
|
73 |
||
23861
72bb3494746f
replaced info by ident (for full identification, potentially content-based);
wenzelm
parents:
23826
diff
changeset
|
74 |
datatype ident = Ident of string; |
16261 | 75 |
|
23874 | 76 |
fun rep_ident (Ident s) = s; |
77 |
||
23861
72bb3494746f
replaced info by ident (for full identification, potentially content-based);
wenzelm
parents:
23826
diff
changeset
|
78 |
fun ident path = |
26946
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
79 |
let val p = platform_path path in |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
80 |
(case try OS.FileSys.modTime p of |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
81 |
NONE => NONE |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
82 |
| SOME time => SOME (Ident |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
83 |
(case getenv "ISABELLE_FILE_IDENT" of |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
84 |
"" => OS.FileSys.fullPath p ^ ": " ^ Time.toString time |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
85 |
| cmd => |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
86 |
let |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
87 |
val (id, rc) = system_out ("\"$ISABELLE_HOME/lib/scripts/fileident\" " ^ shell_path path) |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
88 |
in |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
89 |
if id <> "" andalso rc = 0 then id |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
90 |
else error ("Failed to identify file " ^ quote (Path.implode path) ^ " by " ^ cmd) |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
91 |
end))) |
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
92 |
end; |
16261 | 93 |
|
23861
72bb3494746f
replaced info by ident (for full identification, potentially content-based);
wenzelm
parents:
23826
diff
changeset
|
94 |
val exists = can OS.FileSys.modTime o platform_path; |
16261 | 95 |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
19960
diff
changeset
|
96 |
fun check path = |
17826 | 97 |
if exists path then () |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
19960
diff
changeset
|
98 |
else error ("No such file or directory: " ^ quote (Path.implode path)); |
17826 | 99 |
|
16261 | 100 |
val rm = OS.FileSys.remove o platform_path; |
101 |
||
102 |
fun mkdir path = system_command ("mkdir -p " ^ shell_path path); |
|
103 |
||
104 |
fun is_dir path = |
|
19473 | 105 |
the_default false (try OS.FileSys.isDir (platform_path path)); |
16261 | 106 |
|
107 |
||
6224 | 108 |
(* read / write files *) |
109 |
||
16261 | 110 |
local |
111 |
||
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
112 |
fun with_file open_file close_file f path = |
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
113 |
let val file = open_file path |
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
114 |
in Exn.release (Exn.capture f file before close_file file) end; |
6224 | 115 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
116 |
fun output txts file = List.app (fn txt => TextIO.output (file, txt)) txts; |
6182 | 117 |
|
16261 | 118 |
in |
6218 | 119 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
120 |
fun open_input f = with_file TextIO.openIn TextIO.closeIn f o platform_path; |
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
121 |
fun open_output f = with_file TextIO.openOut TextIO.closeOut f o platform_path; |
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
122 |
fun open_append f = with_file TextIO.openAppend TextIO.closeOut f o platform_path; |
6224 | 123 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
124 |
val read = open_input TextIO.inputAll; |
5009 | 125 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
126 |
fun write_list path txts = open_output (output txts) path; |
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
127 |
fun append_list path txts = open_append (output txts) path; |
16713 | 128 |
|
129 |
fun write path txt = write_list path [txt]; |
|
130 |
fun append path txt = append_list path [txt]; |
|
6182 | 131 |
|
16261 | 132 |
end; |
5009 | 133 |
|
16603 | 134 |
fun eq paths = |
135 |
(case try (pairself (OS.FileSys.fileId o platform_path)) paths of |
|
26656 | 136 |
SOME ids => is_equal (OS.FileSys.compare ids) |
16603 | 137 |
| NONE => false); |
138 |
||
21962 | 139 |
fun copy src dst = |
140 |
if eq (src, dst) then () |
|
141 |
else |
|
142 |
let val target = if is_dir dst then Path.append dst (Path.base src) else dst |
|
143 |
in write target (read src) end; |
|
6318 | 144 |
|
21962 | 145 |
fun copy_dir src dst = |
146 |
if eq (src, dst) then () |
|
147 |
else (system_command ("cp -r -f " ^ shell_path src ^ "/. " ^ shell_path dst); ()); |
|
6640 | 148 |
|
5009 | 149 |
end; |