author | wenzelm |
Thu, 30 Nov 2023 13:35:17 +0100 | |
changeset 79094 | 58bb68b9470f |
parent 79045 | 24d04dd5bf01 |
child 79659 | a4118f530263 |
permissions | -rw-r--r-- |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
1 |
/* Title: Pure/General/file.scala |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
3 |
|
64698 | 4 |
File-system operations. |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
5 |
*/ |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
6 |
|
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
7 |
package isabelle |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
8 |
|
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
9 |
|
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
10 |
import java.io.{BufferedWriter, OutputStreamWriter, FileOutputStream, BufferedOutputStream, |
51504 | 11 |
OutputStream, InputStream, FileInputStream, BufferedInputStream, BufferedReader, |
12 |
InputStreamReader, File => JFile, IOException} |
|
73317 | 13 |
import java.nio.file.{StandardOpenOption, Path => JPath, Files, SimpleFileVisitor, |
14 |
FileVisitOption, FileVisitResult} |
|
78169
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
15 |
import java.nio.file.attribute.{BasicFileAttributes, PosixFilePermission} |
79045
24d04dd5bf01
more robust exception handling (amending 8cc1ae43e12e);
wenzelm
parents:
79044
diff
changeset
|
16 |
import java.net.{URI, URL} |
50684
12b7e0b4a66e
support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents:
50203
diff
changeset
|
17 |
import java.util.zip.{GZIPInputStream, GZIPOutputStream} |
69293
72a9860f8602
clarified find_files: follow links by default, e.g. relevant for "~/cronjob/log";
wenzelm
parents:
66693
diff
changeset
|
18 |
import java.util.EnumSet |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
19 |
|
76353 | 20 |
import org.tukaani.xz |
21 |
import com.github.luben.zstd |
|
76348 | 22 |
|
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
23 |
import scala.collection.mutable |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
24 |
|
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
25 |
|
75393 | 26 |
object File { |
60992 | 27 |
/* standard path (Cygwin or Posix) */ |
60988 | 28 |
|
29 |
def standard_path(path: Path): String = path.expand.implode |
|
30 |
||
60992 | 31 |
def standard_path(platform_path: String): String = |
73911 | 32 |
isabelle.setup.Environment.standard_path(platform_path) |
60992 | 33 |
|
34 |
def standard_path(file: JFile): String = standard_path(file.getPath) |
|
35 |
||
36 |
def standard_url(name: String): String = |
|
37 |
try { |
|
79044
8cc1ae43e12e
clarified signature: avoid deprecated URL constructors;
wenzelm
parents:
78956
diff
changeset
|
38 |
val url = new URI(name).toURL |
8cc1ae43e12e
clarified signature: avoid deprecated URL constructors;
wenzelm
parents:
78956
diff
changeset
|
39 |
if (url.getProtocol == "file" && Url.is_wellformed_file(name)) { |
64775 | 40 |
standard_path(Url.parse_file(name)) |
79044
8cc1ae43e12e
clarified signature: avoid deprecated URL constructors;
wenzelm
parents:
78956
diff
changeset
|
41 |
} |
60992 | 42 |
else name |
43 |
} |
|
79045
24d04dd5bf01
more robust exception handling (amending 8cc1ae43e12e);
wenzelm
parents:
79044
diff
changeset
|
44 |
catch { case exn: Throwable if Url.is_malformed(exn) => standard_path(name) } |
60992 | 45 |
|
46 |
||
47 |
/* platform path (Windows or Posix) */ |
|
48 |
||
49 |
def platform_path(standard_path: String): String = |
|
73911 | 50 |
isabelle.setup.Environment.platform_path(standard_path) |
60992 | 51 |
|
52 |
def platform_path(path: Path): String = platform_path(standard_path(path)) |
|
60988 | 53 |
def platform_file(path: Path): JFile = new JFile(platform_path(path)) |
54 |
||
60992 | 55 |
|
76884 | 56 |
/* symbolic path representation, e.g. "~~/src/Pure/ROOT.ML" */ |
57 |
||
58 |
def symbolic_path(path: Path): String = { |
|
77218 | 59 |
val directories = space_explode(':', Isabelle_System.getenv("ISABELLE_DIRECTORIES")).reverse |
76884 | 60 |
val full_name = standard_path(path) |
61 |
directories.view.flatMap(a => |
|
62 |
try { |
|
63 |
val b = standard_path(Path.explode(a)) |
|
64 |
if (full_name == b) Some(a) |
|
65 |
else { |
|
66 |
Library.try_unprefix(b + "/", full_name) match { |
|
67 |
case Some(name) => Some(a + "/" + name) |
|
68 |
case None => None |
|
69 |
} |
|
70 |
} |
|
71 |
} catch { case ERROR(_) => None }).headOption.getOrElse(path.implode) |
|
72 |
} |
|
73 |
||
74 |
||
66232 | 75 |
/* platform files */ |
76 |
||
77 |
def absolute(file: JFile): JFile = file.toPath.toAbsolutePath.normalize.toFile |
|
78 |
def canonical(file: JFile): JFile = file.getCanonicalFile |
|
79 |
||
80 |
def path(file: JFile): Path = Path.explode(standard_path(file)) |
|
76546 | 81 |
def path(java_path: JPath): Path = path(java_path.toFile) |
82 |
||
66232 | 83 |
def pwd(): Path = path(Path.current.absolute_file) |
84 |
||
75701 | 85 |
def uri(file: JFile): URI = file.toURI |
86 |
def uri(path: Path): URI = path.file.toURI |
|
87 |
||
88 |
def url(file: JFile): URL = uri(file).toURL |
|
89 |
def url(path: Path): URL = url(path.file) |
|
90 |
||
66232 | 91 |
|
75906
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
92 |
/* adhoc file types */ |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
93 |
|
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
94 |
def is_ML(s: String): Boolean = s.endsWith(".ML") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
95 |
def is_bib(s: String): Boolean = s.endsWith(".bib") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
96 |
def is_dll(s: String): Boolean = s.endsWith(".dll") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
97 |
def is_exe(s: String): Boolean = s.endsWith(".exe") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
98 |
def is_gz(s: String): Boolean = s.endsWith(".gz") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
99 |
def is_html(s: String): Boolean = s.endsWith(".html") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
100 |
def is_jar(s: String): Boolean = s.endsWith(".jar") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
101 |
def is_java(s: String): Boolean = s.endsWith(".java") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
102 |
def is_node(s: String): Boolean = s.endsWith(".node") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
103 |
def is_pdf(s: String): Boolean = s.endsWith(".pdf") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
104 |
def is_png(s: String): Boolean = s.endsWith(".png") |
76540
83de6e9ae983
clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents:
76533
diff
changeset
|
105 |
def is_tar_bz2(s: String): Boolean = s.endsWith(".tar.bz2") |
76533 | 106 |
def is_tar_gz(s: String): Boolean = s.endsWith(".tar.gz") |
76540
83de6e9ae983
clarified signature: prefer Scala functions instead of shell scripts;
wenzelm
parents:
76533
diff
changeset
|
107 |
def is_tgz(s: String): Boolean = s.endsWith(".tgz") |
75906
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
108 |
def is_thy(s: String): Boolean = s.endsWith(".thy") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
109 |
def is_xz(s: String): Boolean = s.endsWith(".xz") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
110 |
def is_zip(s: String): Boolean = s.endsWith(".zip") |
76348 | 111 |
def is_zst(s: String): Boolean = s.endsWith(".zst") |
75906
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
112 |
|
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
113 |
def is_backup(s: String): Boolean = s.endsWith("~") || s.endsWith(".orig") |
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
114 |
|
2167b9e3157a
clarified signature: support for adhoc file types;
wenzelm
parents:
75825
diff
changeset
|
115 |
|
66693 | 116 |
/* relative paths */ |
117 |
||
75393 | 118 |
def relative_path(base: Path, other: Path): Option[Path] = { |
73945 | 119 |
val base_path = base.java_path |
120 |
val other_path = other.java_path |
|
66693 | 121 |
if (other_path.startsWith(base_path)) |
122 |
Some(path(base_path.relativize(other_path).toFile)) |
|
123 |
else None |
|
124 |
} |
|
125 |
||
126 |
||
62545
8ebffdaf2ce2
Bash.process always uses a closed script instead of an open argument list, for extra robustness on Windows, where quoting is not well-defined;
wenzelm
parents:
62544
diff
changeset
|
127 |
/* bash path */ |
60992 | 128 |
|
64304 | 129 |
def bash_path(path: Path): String = Bash.string(standard_path(path)) |
130 |
def bash_path(file: JFile): String = Bash.string(standard_path(file)) |
|
60988 | 131 |
|
72036 | 132 |
def bash_platform_path(path: Path): String = Bash.string(platform_path(path)) |
133 |
||
60988 | 134 |
|
62829
4141c2a8458b
clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents:
62704
diff
changeset
|
135 |
/* directory content */ |
4141c2a8458b
clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents:
62704
diff
changeset
|
136 |
|
75393 | 137 |
def read_dir(dir: Path): List[String] = { |
69300
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
69299
diff
changeset
|
138 |
if (!dir.is_dir) error("No such directory: " + dir.toString) |
62829
4141c2a8458b
clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents:
62704
diff
changeset
|
139 |
val files = dir.file.listFiles |
4141c2a8458b
clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents:
62704
diff
changeset
|
140 |
if (files == null) Nil |
69427
ff2f39a221d4
clarified operations: uniform sorting of results;
wenzelm
parents:
69405
diff
changeset
|
141 |
else files.toList.map(_.getName).sorted |
62829
4141c2a8458b
clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents:
62704
diff
changeset
|
142 |
} |
48613
232652ac346e
clarified directory content operations (similar to ML version);
wenzelm
parents:
48550
diff
changeset
|
143 |
|
76529 | 144 |
def get_entry( |
145 |
dir: Path, |
|
146 |
pred: Path => Boolean = _ => true, |
|
147 |
title: String = "" |
|
148 |
): Path = |
|
149 |
read_dir(dir).filter(name => pred(dir + Path.basic(name))) match { |
|
150 |
case List(entry) => dir + Path.basic(entry) |
|
151 |
case bad => |
|
152 |
error("Bad directory content in " + (if (title.nonEmpty) title else dir.toString) + |
|
153 |
"\nexpected a single entry, but found" + |
|
154 |
(if (bad.isEmpty) " nothing" |
|
155 |
else bad.sorted.map(quote).mkString(":\n ", "\n ", ""))) |
|
72442 | 156 |
} |
157 |
||
76529 | 158 |
def get_file(dir: Path, title: String = ""): Path = |
159 |
get_entry(dir, pred = _.is_file, title = title) |
|
160 |
||
161 |
def get_dir(dir: Path, title: String = ""): Path = |
|
162 |
get_entry(dir, pred = _.is_dir, title = title) |
|
163 |
||
64932 | 164 |
def find_files( |
165 |
start: JFile, |
|
166 |
pred: JFile => Boolean = _ => true, |
|
69293
72a9860f8602
clarified find_files: follow links by default, e.g. relevant for "~/cronjob/log";
wenzelm
parents:
66693
diff
changeset
|
167 |
include_dirs: Boolean = false, |
75393 | 168 |
follow_links: Boolean = false |
169 |
): List[JFile] = { |
|
62443
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
170 |
val result = new mutable.ListBuffer[JFile] |
73340 | 171 |
def check(file: JFile): Unit = if (pred(file)) result += file |
62443
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
172 |
|
64932 | 173 |
if (start.isFile) check(start) |
62443
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
174 |
else if (start.isDirectory) { |
69293
72a9860f8602
clarified find_files: follow links by default, e.g. relevant for "~/cronjob/log";
wenzelm
parents:
66693
diff
changeset
|
175 |
val options = |
72a9860f8602
clarified find_files: follow links by default, e.g. relevant for "~/cronjob/log";
wenzelm
parents:
66693
diff
changeset
|
176 |
if (follow_links) EnumSet.of(FileVisitOption.FOLLOW_LINKS) |
72a9860f8602
clarified find_files: follow links by default, e.g. relevant for "~/cronjob/log";
wenzelm
parents:
66693
diff
changeset
|
177 |
else EnumSet.noneOf(classOf[FileVisitOption]) |
78243 | 178 |
Files.walkFileTree(start.toPath, options, Int.MaxValue, |
62443
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
179 |
new SimpleFileVisitor[JPath] { |
75393 | 180 |
override def preVisitDirectory( |
181 |
path: JPath, |
|
182 |
attrs: BasicFileAttributes |
|
183 |
): FileVisitResult = { |
|
64932 | 184 |
if (include_dirs) check(path.toFile) |
185 |
FileVisitResult.CONTINUE |
|
186 |
} |
|
75393 | 187 |
override def visitFile( |
188 |
path: JPath, |
|
189 |
attrs: BasicFileAttributes |
|
190 |
): FileVisitResult = { |
|
69301 | 191 |
val file = path.toFile |
192 |
if (include_dirs || !file.isDirectory) check(file) |
|
62443
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
193 |
FileVisitResult.CONTINUE |
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
194 |
} |
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
195 |
} |
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
196 |
) |
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
197 |
} |
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
198 |
|
133f65ac17e5
just one File.find_files, based on Java 7 Files operations;
wenzelm
parents:
62294
diff
changeset
|
199 |
result.toList |
48613
232652ac346e
clarified directory content operations (similar to ML version);
wenzelm
parents:
48550
diff
changeset
|
200 |
} |
232652ac346e
clarified directory content operations (similar to ML version);
wenzelm
parents:
48550
diff
changeset
|
201 |
|
232652ac346e
clarified directory content operations (similar to ML version);
wenzelm
parents:
48550
diff
changeset
|
202 |
|
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
203 |
/* read */ |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
204 |
|
65589
f70c617e9c26
more robust treatment of non-UTF8 text files (cf. 3ed43cfc8b14), notably old log files in ISO-8859-15;
wenzelm
parents:
64934
diff
changeset
|
205 |
def read(file: JFile): String = Bytes.read(file).text |
48913
f686cb016c0c
more direct File.read_bytes -- avoid cumulative copying of StringBuilder;
wenzelm
parents:
48613
diff
changeset
|
206 |
def read(path: Path): String = read(path.file) |
f686cb016c0c
more direct File.read_bytes -- avoid cumulative copying of StringBuilder;
wenzelm
parents:
48613
diff
changeset
|
207 |
|
50684
12b7e0b4a66e
support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents:
50203
diff
changeset
|
208 |
|
75393 | 209 |
def read_stream(reader: BufferedReader): String = { |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
210 |
val output = new StringBuilder(100) |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
211 |
var c = -1 |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
212 |
while ({ c = reader.read; c != -1 }) output += c.toChar |
73367 | 213 |
reader.close() |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
214 |
output.toString |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
215 |
} |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
216 |
|
50684
12b7e0b4a66e
support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents:
50203
diff
changeset
|
217 |
def read_stream(stream: InputStream): String = |
64000 | 218 |
read_stream(new BufferedReader(new InputStreamReader(stream, UTF8.charset))) |
50684
12b7e0b4a66e
support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents:
50203
diff
changeset
|
219 |
|
12b7e0b4a66e
support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents:
50203
diff
changeset
|
220 |
def read_gzip(file: JFile): String = |
12b7e0b4a66e
support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents:
50203
diff
changeset
|
221 |
read_stream(new GZIPInputStream(new BufferedInputStream(new FileInputStream(file)))) |
64000 | 222 |
def read_gzip(path: Path): String = read_gzip(path.file) |
51504 | 223 |
|
64002 | 224 |
def read_xz(file: JFile): String = |
76353 | 225 |
read_stream(new xz.XZInputStream(new BufferedInputStream(new FileInputStream(file)))) |
64000 | 226 |
def read_xz(path: Path): String = read_xz(path.file) |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
227 |
|
76348 | 228 |
def read_zstd(file: JFile): String = { |
76349
b4daf7577ca0
clarified Zstd.init(): avoid accidential com.github.luben.zstd.util.Native.load() operation;
wenzelm
parents:
76348
diff
changeset
|
229 |
Zstd.init() |
76353 | 230 |
read_stream(new zstd.ZstdInputStream(new BufferedInputStream(new FileInputStream(file)))) |
76348 | 231 |
} |
232 |
def read_zstd(path: Path): String = read_zstd(path.file) |
|
233 |
||
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
234 |
|
50845 | 235 |
/* read lines */ |
236 |
||
75393 | 237 |
def read_line(reader: BufferedReader): Option[String] = { |
69487 | 238 |
val line = |
239 |
try { reader.readLine} |
|
240 |
catch { case _: IOException => null } |
|
72698 | 241 |
Option(line).map(Library.trim_line) |
69487 | 242 |
} |
243 |
||
75393 | 244 |
def read_lines(reader: BufferedReader, progress: String => Unit): List[String] = { |
50845 | 245 |
val result = new mutable.ListBuffer[String] |
69487 | 246 |
var line: Option[String] = None |
247 |
while ({ line = read_line(reader); line.isDefined }) { |
|
248 |
progress(line.get) |
|
249 |
result += line.get |
|
50845 | 250 |
} |
73367 | 251 |
reader.close() |
50845 | 252 |
result.toList |
253 |
} |
|
254 |
||
255 |
||
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
256 |
/* write */ |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
257 |
|
71534 | 258 |
def writer(file: JFile): BufferedWriter = |
259 |
new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), UTF8.charset)) |
|
260 |
||
73340 | 261 |
def write_file( |
75393 | 262 |
file: JFile, |
263 |
text: String, |
|
264 |
make_stream: OutputStream => OutputStream |
|
265 |
): Unit = { |
|
51504 | 266 |
val stream = make_stream(new FileOutputStream(file)) |
69393
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
69301
diff
changeset
|
267 |
using(new BufferedWriter(new OutputStreamWriter(stream, UTF8.charset)))(_.append(text)) |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
268 |
} |
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
269 |
|
73574
12b3f78dde61
clarified signature: avoid overlap of String vs. Bytes (both are CharSequence);
wenzelm
parents:
73367
diff
changeset
|
270 |
def write(file: JFile, text: String): Unit = write_file(file, text, s => s) |
12b3f78dde61
clarified signature: avoid overlap of String vs. Bytes (both are CharSequence);
wenzelm
parents:
73367
diff
changeset
|
271 |
def write(path: Path, text: String): Unit = write(path.file, text) |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
272 |
|
73574
12b3f78dde61
clarified signature: avoid overlap of String vs. Bytes (both are CharSequence);
wenzelm
parents:
73367
diff
changeset
|
273 |
def write_gzip(file: JFile, text: String): Unit = |
51504 | 274 |
write_file(file, text, (s: OutputStream) => new GZIPOutputStream(new BufferedOutputStream(s))) |
73574
12b3f78dde61
clarified signature: avoid overlap of String vs. Bytes (both are CharSequence);
wenzelm
parents:
73367
diff
changeset
|
275 |
def write_gzip(path: Path, text: String): Unit = write_gzip(path.file, text) |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
276 |
|
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
277 |
def write_xz(file: JFile, text: String, options: Compress.Options_XZ): Unit = |
76353 | 278 |
File.write_file(file, text, |
279 |
s => new xz.XZOutputStream(new BufferedOutputStream(s), options.make)) |
|
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
280 |
def write_xz(file: JFile, text: String): Unit = write_xz(file, text, Compress.Options_XZ()) |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
281 |
def write_xz(path: Path, text: String, options: Compress.Options_XZ): Unit = |
64002 | 282 |
write_xz(path.file, text, options) |
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
283 |
def write_xz(path: Path, text: String): Unit = write_xz(path, text, Compress.Options_XZ()) |
64000 | 284 |
|
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
285 |
def write_zstd(file: JFile, text: String, options: Compress.Options_Zstd): Unit = { |
76349
b4daf7577ca0
clarified Zstd.init(): avoid accidential com.github.luben.zstd.util.Native.load() operation;
wenzelm
parents:
76348
diff
changeset
|
286 |
Zstd.init() |
76353 | 287 |
File.write_file(file, text, |
288 |
s => new zstd.ZstdOutputStream(new BufferedOutputStream(s), options.level)) |
|
76348 | 289 |
} |
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
290 |
def write_zstd(file: JFile, text: String): Unit = |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
291 |
write_zstd(file, text, Compress.Options_Zstd()) |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
292 |
def write_zstd(path: Path, text: String, options: Compress.Options_Zstd): Unit = |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
293 |
write_zstd(path.file, text, options) |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
294 |
def write_zstd(path: Path, text: String): Unit = |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
76349
diff
changeset
|
295 |
write_zstd(path, text, Compress.Options_Zstd()) |
76348 | 296 |
|
75393 | 297 |
def write_backup(path: Path, text: String): Unit = { |
73317 | 298 |
if (path.is_file) Isabelle_System.move_file(path, path.backup) |
62444 | 299 |
write(path, text) |
53336 | 300 |
} |
301 |
||
75393 | 302 |
def write_backup2(path: Path, text: String): Unit = { |
73317 | 303 |
if (path.is_file) Isabelle_System.move_file(path, path.backup2) |
62444 | 304 |
write(path, text) |
58610 | 305 |
} |
306 |
||
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
307 |
|
62703 | 308 |
/* append */ |
309 |
||
73574
12b3f78dde61
clarified signature: avoid overlap of String vs. Bytes (both are CharSequence);
wenzelm
parents:
73367
diff
changeset
|
310 |
def append(file: JFile, text: String): Unit = |
73627 | 311 |
Files.write(file.toPath, UTF8.bytes(text), |
62703 | 312 |
StandardOpenOption.APPEND, StandardOpenOption.CREATE) |
313 |
||
73574
12b3f78dde61
clarified signature: avoid overlap of String vs. Bytes (both are CharSequence);
wenzelm
parents:
73367
diff
changeset
|
314 |
def append(path: Path, text: String): Unit = append(path.file, text) |
62703 | 315 |
|
316 |
||
75206 | 317 |
/* change */ |
318 |
||
75393 | 319 |
def change( |
320 |
path: Path, |
|
321 |
init: Boolean = false, |
|
322 |
strict: Boolean = false |
|
323 |
)(f: String => String): Unit = { |
|
75208 | 324 |
if (!path.is_file && init) write(path, "") |
75206 | 325 |
val x = read(path) |
326 |
val y = f(x) |
|
327 |
if (x != y) write(path, y) |
|
75213 | 328 |
else if (strict) error("Unchanged file: " + path) |
75206 | 329 |
} |
330 |
||
75213 | 331 |
def change_lines(path: Path, init: Boolean = false, strict: Boolean = false)( |
332 |
f: List[String] => List[String]): Unit = |
|
333 |
change(path, init = init, strict = strict)(text => cat_lines(f(split_lines(text)))) |
|
75206 | 334 |
|
335 |
||
64213 | 336 |
/* eq */ |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
337 |
|
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
338 |
def eq(file1: JFile, file2: JFile): Boolean = |
73318 | 339 |
try { Files.isSameFile(file1.toPath, file2.toPath) } |
49673
2a088cff1e7b
more robust File.eq, and thus File.copy of "~~/lib/logo/isabelle.gif";
wenzelm
parents:
49610
diff
changeset
|
340 |
catch { case ERROR(_) => false } |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
341 |
|
64213 | 342 |
def eq(path1: Path, path2: Path): Boolean = eq(path1.file, path2.file) |
343 |
||
344 |
||
64934 | 345 |
/* eq_content */ |
346 |
||
347 |
def eq_content(file1: JFile, file2: JFile): Boolean = |
|
348 |
if (eq(file1, file2)) true |
|
349 |
else if (file1.length != file2.length) false |
|
350 |
else Bytes.read(file1) == Bytes.read(file2) |
|
351 |
||
352 |
def eq_content(path1: Path, path2: Path): Boolean = eq_content(path1.file, path2.file) |
|
353 |
||
354 |
||
69405
22428643351f
more direct File.executable operation: avoid external process (on Unix);
wenzelm
parents:
69402
diff
changeset
|
355 |
/* permissions */ |
22428643351f
more direct File.executable operation: avoid external process (on Unix);
wenzelm
parents:
69402
diff
changeset
|
356 |
|
78169
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
357 |
private val restrict_perms: List[PosixFilePermission] = |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
358 |
List( |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
359 |
PosixFilePermission.GROUP_READ, |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
360 |
PosixFilePermission.GROUP_WRITE, |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
361 |
PosixFilePermission.GROUP_EXECUTE, |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
362 |
PosixFilePermission.OTHERS_READ, |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
363 |
PosixFilePermission.OTHERS_WRITE, |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
364 |
PosixFilePermission.OTHERS_EXECUTE) |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
365 |
|
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
366 |
def restrict(path: Path): Unit = |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
367 |
if (Platform.is_windows) Isabelle_System.chmod("g-rwx,o-rwx", path) |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
368 |
else { |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
369 |
val perms = Files.getPosixFilePermissions(path.java_path) |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
370 |
var perms_changed = false |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
371 |
for (p <- restrict_perms if perms.contains(p)) { |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
372 |
perms.remove(p) |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
373 |
perms_changed = true |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
374 |
} |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
375 |
if (perms_changed) Files.setPosixFilePermissions(path.java_path, perms) |
5ad1ae8626de
minor performance tuning: avoid external process;
wenzelm
parents:
78161
diff
changeset
|
376 |
} |
78161 | 377 |
|
75393 | 378 |
def is_executable(path: Path): Boolean = { |
69788 | 379 |
if (Platform.is_windows) Isabelle_System.bash("test -x " + bash_path(path)).check.ok |
380 |
else path.file.canExecute |
|
381 |
} |
|
382 |
||
78298
3b0f8f1010f2
clarified signature, with subtle change of semantics (amending 8b5a2e4b16d4);
wenzelm
parents:
78243
diff
changeset
|
383 |
def set_executable(path: Path, reset: Boolean = false): Unit = { |
3b0f8f1010f2
clarified signature, with subtle change of semantics (amending 8b5a2e4b16d4);
wenzelm
parents:
78243
diff
changeset
|
384 |
if (Platform.is_windows) Isabelle_System.chmod(if (reset) "a-x" else "a+x", path) |
3b0f8f1010f2
clarified signature, with subtle change of semantics (amending 8b5a2e4b16d4);
wenzelm
parents:
78243
diff
changeset
|
385 |
else path.file.setExecutable(!reset, false) |
69405
22428643351f
more direct File.executable operation: avoid external process (on Unix);
wenzelm
parents:
69402
diff
changeset
|
386 |
} |
74811 | 387 |
|
388 |
||
389 |
/* content */ |
|
390 |
||
75825 | 391 |
def content(path: Path, content: Bytes): Content = new Content(path, content) |
392 |
def content(path: Path, content: String): Content = new Content(path, Bytes(content)) |
|
75824 | 393 |
def content(path: Path, content: XML.Body): Content_XML = new Content_XML(path, content) |
74811 | 394 |
|
75825 | 395 |
final class Content private[File](val path: Path, val content: Bytes) { |
75677 | 396 |
override def toString: String = path.toString |
74811 | 397 |
|
77852
df35b5b7b6a4
more direct hg_sync init via ssh (see also 721b3278c8e4);
wenzelm
parents:
77218
diff
changeset
|
398 |
def write(dir: Path, ssh: SSH.System = SSH.Local): Unit = { |
75508 | 399 |
val full_path = dir + path |
77852
df35b5b7b6a4
more direct hg_sync init via ssh (see also 721b3278c8e4);
wenzelm
parents:
77218
diff
changeset
|
400 |
ssh.make_directory(ssh.expand_path(full_path).dir) |
df35b5b7b6a4
more direct hg_sync init via ssh (see also 721b3278c8e4);
wenzelm
parents:
77218
diff
changeset
|
401 |
ssh.write_bytes(full_path, content) |
75508 | 402 |
} |
74811 | 403 |
} |
404 |
||
75676 | 405 |
final class Content_XML private[File](val path: Path, val content: XML.Body) { |
75823
6eb8d6cdb686
proper toString for Content_XML, which is not covered by trait Content;
wenzelm
parents:
75701
diff
changeset
|
406 |
override def toString: String = path.toString |
6eb8d6cdb686
proper toString for Content_XML, which is not covered by trait Content;
wenzelm
parents:
75701
diff
changeset
|
407 |
|
75825 | 408 |
def output(out: XML.Body => String): Content = new Content(path, Bytes(out(content))) |
74811 | 409 |
} |
77109
e3a2b3536030
prefer typed bytes count, but retain toString of original Long for robustness of Java/Scala string composition;
wenzelm
parents:
76884
diff
changeset
|
410 |
|
e3a2b3536030
prefer typed bytes count, but retain toString of original Long for robustness of Java/Scala string composition;
wenzelm
parents:
76884
diff
changeset
|
411 |
|
78956 | 412 |
/* strict file size */ |
77109
e3a2b3536030
prefer typed bytes count, but retain toString of original Long for robustness of Java/Scala string composition;
wenzelm
parents:
76884
diff
changeset
|
413 |
|
78956 | 414 |
def size(path: Path): Long = path.check_file.file.length |
415 |
def space(path: Path): Space = Space.bytes(size(path)) |
|
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff
changeset
|
416 |
} |