author | wenzelm |
Tue, 05 Aug 2008 19:29:02 +0200 | |
changeset 27743 | 7420e78f1541 |
parent 26980 | f7f48bb9a025 |
child 28028 | c0f54a32491e |
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; |
26980
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
44 |
|
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
45 |
val shell_quote = enclose "'" "'"; |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
46 |
val shell_path = shell_quote o platform_path; |
6224 | 47 |
|
48 |
||
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
49 |
(* current working directory *) |
6224 | 50 |
|
23826
463903573934
moved cd/pwd to ML compatibility layer (simplifies bootstrapping with Alice);
wenzelm
parents:
22145
diff
changeset
|
51 |
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
|
52 |
val pwd = Path.explode o pwd; |
6224 | 53 |
|
16261 | 54 |
fun full_path path = |
26946
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
55 |
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
|
56 |
else Path.append (pwd ()) path; |
5009 | 57 |
|
6182 | 58 |
|
59 |
(* tmp_path *) |
|
60 |
||
61 |
fun tmp_path path = |
|
62 |
Path.append (Path.variable "ISABELLE_TMP") (Path.base path); |
|
5009 | 63 |
|
64 |
||
16261 | 65 |
(* system commands *) |
66 |
||
67 |
fun isatool cmd = system ("\"$ISATOOL\" " ^ cmd); |
|
68 |
||
69 |
fun system_command cmd = |
|
70 |
if system cmd <> 0 then error ("System command failed: " ^ cmd) |
|
71 |
else (); |
|
72 |
||
73 |
||
26980
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
74 |
(* file identification *) |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
75 |
|
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
76 |
local |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
77 |
val ident_cache = ref (Symtab.empty: {time_stamp: string, id: string} Symtab.table); |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
78 |
in |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
79 |
|
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
80 |
fun check_cache (path, time) = CRITICAL (fn () => |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
81 |
(case Symtab.lookup (! ident_cache) path of |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
82 |
NONE => NONE |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
83 |
| SOME {time_stamp, id} => if time_stamp = time then SOME id else NONE)); |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
84 |
|
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
85 |
fun update_cache (path, (time, id)) = CRITICAL (fn () => |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
86 |
change ident_cache (Symtab.update (path, {time_stamp = time, id = id}))); |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
87 |
|
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
88 |
end; |
16261 | 89 |
|
23861
72bb3494746f
replaced info by ident (for full identification, potentially content-based);
wenzelm
parents:
23826
diff
changeset
|
90 |
datatype ident = Ident of string; |
23874 | 91 |
fun rep_ident (Ident s) = s; |
92 |
||
23861
72bb3494746f
replaced info by ident (for full identification, potentially content-based);
wenzelm
parents:
23826
diff
changeset
|
93 |
fun ident path = |
26980
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
94 |
let val physical_path = perhaps (try OS.FileSys.fullPath) (platform_path path) in |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
95 |
(case try (Time.toString o OS.FileSys.modTime) physical_path of |
26946
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
96 |
NONE => NONE |
26980
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
97 |
| SOME mod_time => SOME (Ident |
26946
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
98 |
(case getenv "ISABELLE_FILE_IDENT" of |
26980
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
99 |
"" => physical_path ^ ": " ^ mod_time |
26946
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
100 |
| cmd => |
26980
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
101 |
(case check_cache (physical_path, mod_time) of |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
102 |
SOME id => id |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
103 |
| NONE => |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
104 |
let val (id, rc) = (*potentially slow*) |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
105 |
system_out ("\"$ISABELLE_HOME/lib/scripts/fileident\" " ^ shell_quote physical_path) |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
106 |
in |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
107 |
if id <> "" andalso rc = 0 then (update_cache (physical_path, (mod_time, id)); id) |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
108 |
else error ("Failed to identify file " ^ quote (Path.implode path) ^ " by " ^ cmd) |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
109 |
end)))) |
26946
0b6eff8c088d
removed norm_absolute (not thread safe; chdir does not guarantee normalization anyway);
wenzelm
parents:
26656
diff
changeset
|
110 |
end; |
16261 | 111 |
|
26980
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
112 |
|
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
113 |
(* directory entries *) |
f7f48bb9a025
ident: naive caching prevents potentially slow external invocations;
wenzelm
parents:
26946
diff
changeset
|
114 |
|
23861
72bb3494746f
replaced info by ident (for full identification, potentially content-based);
wenzelm
parents:
23826
diff
changeset
|
115 |
val exists = can OS.FileSys.modTime o platform_path; |
16261 | 116 |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
19960
diff
changeset
|
117 |
fun check path = |
17826 | 118 |
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
|
119 |
else error ("No such file or directory: " ^ quote (Path.implode path)); |
17826 | 120 |
|
16261 | 121 |
val rm = OS.FileSys.remove o platform_path; |
122 |
||
123 |
fun mkdir path = system_command ("mkdir -p " ^ shell_path path); |
|
124 |
||
125 |
fun is_dir path = |
|
19473 | 126 |
the_default false (try OS.FileSys.isDir (platform_path path)); |
16261 | 127 |
|
128 |
||
6224 | 129 |
(* read / write files *) |
130 |
||
16261 | 131 |
local |
132 |
||
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
133 |
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
|
134 |
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
|
135 |
in Exn.release (Exn.capture f file before close_file file) end; |
6224 | 136 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
137 |
fun output txts file = List.app (fn txt => TextIO.output (file, txt)) txts; |
6182 | 138 |
|
16261 | 139 |
in |
6218 | 140 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
141 |
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
|
142 |
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
|
143 |
fun open_append f = with_file TextIO.openAppend TextIO.closeOut f o platform_path; |
6224 | 144 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
145 |
val read = open_input TextIO.inputAll; |
5009 | 146 |
|
26503
4dec4460244f
discontinued unused hooks explode_platform_path_fn, platform_path_fn, shell_path_fn;
wenzelm
parents:
26220
diff
changeset
|
147 |
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
|
148 |
fun append_list path txts = open_append (output txts) path; |
16713 | 149 |
|
150 |
fun write path txt = write_list path [txt]; |
|
151 |
fun append path txt = append_list path [txt]; |
|
6182 | 152 |
|
16261 | 153 |
end; |
5009 | 154 |
|
16603 | 155 |
fun eq paths = |
156 |
(case try (pairself (OS.FileSys.fileId o platform_path)) paths of |
|
26656 | 157 |
SOME ids => is_equal (OS.FileSys.compare ids) |
16603 | 158 |
| NONE => false); |
159 |
||
21962 | 160 |
fun copy src dst = |
161 |
if eq (src, dst) then () |
|
162 |
else |
|
163 |
let val target = if is_dir dst then Path.append dst (Path.base src) else dst |
|
164 |
in write target (read src) end; |
|
6318 | 165 |
|
21962 | 166 |
fun copy_dir src dst = |
167 |
if eq (src, dst) then () |
|
168 |
else (system_command ("cp -r -f " ^ shell_path src ^ "/. " ^ shell_path dst); ()); |
|
6640 | 169 |
|
5009 | 170 |
end; |