src/Pure/General/file.scala
author wenzelm
Fri, 30 Jun 2017 14:01:55 +0200
changeset 66232 be0ab4b94c62
parent 65589 f70c617e9c26
child 66233 7188967253e5
permissions -rw-r--r--
clarified signature;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
e022a69db531 tuned comments;
wenzelm
parents: 64668
diff changeset
     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
18095684c5a6 basic support for xz files;
wenzelm
parents: 51251
diff changeset
    11
  OutputStream, InputStream, FileInputStream, BufferedInputStream, BufferedReader,
18095684c5a6 basic support for xz files;
wenzelm
parents: 51251
diff changeset
    12
  InputStreamReader, File => JFile, IOException}
62703
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
    13
import java.nio.file.{StandardOpenOption, StandardCopyOption, Path => JPath,
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
    14
  Files, SimpleFileVisitor, FileVisitResult}
62443
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
    15
import java.nio.file.attribute.BasicFileAttributes
64775
dd3797f1e0d6 clarified file URIs;
wenzelm
parents: 64760
diff changeset
    16
import java.net.{URL, MalformedURLException}
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}
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    18
import java.util.regex.Pattern
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
    19
64002
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
    20
import org.tukaani.xz.{XZInputStream, XZOutputStream}
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
    21
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
    22
import scala.collection.mutable
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    23
import scala.util.matching.Regex
48411
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
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
    26
object File
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
    27
{
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    28
  /* standard path (Cygwin or Posix) */
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 58610
diff changeset
    29
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 58610
diff changeset
    30
  def standard_path(path: Path): String = path.expand.implode
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 58610
diff changeset
    31
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    32
  def standard_path(platform_path: String): String =
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    33
    if (Platform.is_windows) {
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    34
      val Platform_Root = new Regex("(?i)" +
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 60992
diff changeset
    35
        Pattern.quote(Isabelle_System.cygwin_root()) + """(?:\\+|\z)(.*)""")
64775
dd3797f1e0d6 clarified file URIs;
wenzelm
parents: 64760
diff changeset
    36
      val Drive = new Regex("""([a-zA-Z]):\\*(.*)""")
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    37
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    38
      platform_path.replace('/', '\\') match {
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    39
        case Platform_Root(rest) => "/" + rest.replace('\\', '/')
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    40
        case Drive(letter, rest) =>
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    41
          "/cygdrive/" + Word.lowercase(letter) +
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    42
            (if (rest == "") "" else "/" + rest.replace('\\', '/'))
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    43
        case path => path.replace('\\', '/')
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    44
      }
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    45
    }
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    46
    else platform_path
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    47
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    48
  def standard_path(file: JFile): String = standard_path(file.getPath)
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    49
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    50
  def standard_url(name: String): String =
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    51
    try {
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    52
      val url = new URL(name)
64775
dd3797f1e0d6 clarified file URIs;
wenzelm
parents: 64760
diff changeset
    53
      if (url.getProtocol == "file" && Url.is_wellformed_file(name))
dd3797f1e0d6 clarified file URIs;
wenzelm
parents: 64760
diff changeset
    54
        standard_path(Url.parse_file(name))
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    55
      else name
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    56
    }
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    57
    catch { case _: MalformedURLException => standard_path(name) }
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    58
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    59
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    60
  /* platform path (Windows or Posix) */
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    61
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    62
  private val Cygdrive = new Regex("/cygdrive/([a-zA-Z])($|/.*)")
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    63
  private val Named_Root = new Regex("//+([^/]*)(.*)")
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    64
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    65
  def platform_path(standard_path: String): String =
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    66
    if (Platform.is_windows) {
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    67
      val result_path = new StringBuilder
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    68
      val rest =
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    69
        standard_path match {
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    70
          case Cygdrive(drive, rest) =>
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    71
            result_path ++= (Word.uppercase(drive) + ":" + JFile.separator)
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    72
            rest
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    73
          case Named_Root(root, rest) =>
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    74
            result_path ++= JFile.separator
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    75
            result_path ++= JFile.separator
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    76
            result_path ++= root
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    77
            rest
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    78
          case path if path.startsWith("/") =>
61291
e00e1bf23d03 uniform treatment of bootstrap directories;
wenzelm
parents: 60992
diff changeset
    79
            result_path ++= Isabelle_System.cygwin_root()
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    80
            path
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    81
          case path => path
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    82
        }
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    83
      for (p <- space_explode('/', rest) if p != "") {
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    84
        val len = result_path.length
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    85
        if (len > 0 && result_path(len - 1) != JFile.separatorChar)
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    86
          result_path += JFile.separatorChar
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    87
        result_path ++= p
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    88
      }
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    89
      result_path.toString
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    90
    }
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    91
    else standard_path
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    92
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    93
  def platform_path(path: Path): String = platform_path(standard_path(path))
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 58610
diff changeset
    94
  def platform_file(path: Path): JFile = new JFile(platform_path(path))
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 58610
diff changeset
    95
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
    96
66232
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
    97
  /* platform files */
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
    98
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
    99
  def absolute(file: JFile): JFile = file.toPath.toAbsolutePath.normalize.toFile
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
   100
  def canonical(file: JFile): JFile = file.getCanonicalFile
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
   101
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
   102
  def path(file: JFile): Path = Path.explode(standard_path(file))
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
   103
  def pwd(): Path = path(Path.current.absolute_file)
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
   104
be0ab4b94c62 clarified signature;
wenzelm
parents: 65589
diff changeset
   105
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
   106
  /* bash path */
60992
89effcb342df clarified modules, like ML version;
wenzelm
parents: 60988
diff changeset
   107
64304
96bc94c87a81 clarified modules;
wenzelm
parents: 64220
diff changeset
   108
  def bash_path(path: Path): String = Bash.string(standard_path(path))
96bc94c87a81 clarified modules;
wenzelm
parents: 64220
diff changeset
   109
  def bash_path(file: JFile): String = Bash.string(standard_path(file))
60988
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 58610
diff changeset
   110
1d7a7e33fd67 tuned signature, according to ML version;
wenzelm
parents: 58610
diff changeset
   111
62544
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   112
  /* directory entries */
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   113
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   114
  def check_dir(path: Path): Path =
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   115
    if (path.is_dir) path else error("No such directory: " + path)
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   116
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   117
  def check_file(path: Path): Path =
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   118
    if (path.is_file) path else error("No such file: " + path)
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   119
efa178abe023 manage the underlying ML process in Scala;
wenzelm
parents: 62444
diff changeset
   120
62829
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   121
  /* directory content */
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   122
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   123
  def read_dir(dir: Path): List[String] =
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   124
  {
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   125
    if (!dir.is_dir) error("Bad directory: " + dir.toString)
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   126
    val files = dir.file.listFiles
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   127
    if (files == null) Nil
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   128
    else files.toList.map(_.getName)
4141c2a8458b clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents: 62704
diff changeset
   129
  }
48613
232652ac346e clarified directory content operations (similar to ML version);
wenzelm
parents: 48550
diff changeset
   130
64932
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   131
  def find_files(
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   132
    start: JFile,
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   133
    pred: JFile => Boolean = _ => true,
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   134
    include_dirs: Boolean = false): List[JFile] =
48613
232652ac346e clarified directory content operations (similar to ML version);
wenzelm
parents: 48550
diff changeset
   135
  {
62443
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   136
    val result = new mutable.ListBuffer[JFile]
64932
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   137
    def check(file: JFile) { if (pred(file)) result += file }
62443
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   138
64932
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   139
    if (start.isFile) check(start)
62443
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   140
    else if (start.isDirectory) {
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   141
      Files.walkFileTree(start.toPath,
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   142
        new SimpleFileVisitor[JPath] {
64932
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   143
          override def preVisitDirectory(path: JPath, attrs: BasicFileAttributes): FileVisitResult =
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   144
          {
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   145
            if (include_dirs) check(path.toFile)
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   146
            FileVisitResult.CONTINUE
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   147
          }
62443
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   148
          override def visitFile(path: JPath, attrs: BasicFileAttributes): FileVisitResult =
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   149
          {
64932
89c0896a19ad clarified operation: include dirs as well;
wenzelm
parents: 64775
diff changeset
   150
            check(path.toFile)
62443
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   151
            FileVisitResult.CONTINUE
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   152
          }
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   153
        }
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   154
      )
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   155
    }
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   156
133f65ac17e5 just one File.find_files, based on Java 7 Files operations;
wenzelm
parents: 62294
diff changeset
   157
    result.toList
48613
232652ac346e clarified directory content operations (similar to ML version);
wenzelm
parents: 48550
diff changeset
   158
  }
232652ac346e clarified directory content operations (similar to ML version);
wenzelm
parents: 48550
diff changeset
   159
232652ac346e clarified directory content operations (similar to ML version);
wenzelm
parents: 48550
diff changeset
   160
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   161
  /* read */
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   162
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
   163
  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
   164
  def read(path: Path): String = read(path.file)
f686cb016c0c more direct File.read_bytes -- avoid cumulative copying of StringBuilder;
wenzelm
parents: 48613
diff changeset
   165
50684
12b7e0b4a66e support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents: 50203
diff changeset
   166
12b7e0b4a66e support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents: 50203
diff changeset
   167
  def read_stream(reader: BufferedReader): String =
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   168
  {
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   169
    val output = new StringBuilder(100)
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   170
    var c = -1
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   171
    while ({ c = reader.read; c != -1 }) output += c.toChar
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   172
    reader.close
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   173
    output.toString
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   174
  }
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   175
50684
12b7e0b4a66e support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents: 50203
diff changeset
   176
  def read_stream(stream: InputStream): String =
64000
445b3deced8f clarified modules;
wenzelm
parents: 62854
diff changeset
   177
    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
   178
12b7e0b4a66e support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents: 50203
diff changeset
   179
  def read_gzip(file: JFile): String =
12b7e0b4a66e support File.read_gzip as well, in accordance to File.write_gzip;
wenzelm
parents: 50203
diff changeset
   180
    read_stream(new GZIPInputStream(new BufferedInputStream(new FileInputStream(file))))
64000
445b3deced8f clarified modules;
wenzelm
parents: 62854
diff changeset
   181
  def read_gzip(path: Path): String = read_gzip(path.file)
51504
18095684c5a6 basic support for xz files;
wenzelm
parents: 51251
diff changeset
   182
64002
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
   183
  def read_xz(file: JFile): String =
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
   184
    read_stream(new XZInputStream(new BufferedInputStream(new FileInputStream(file))))
64000
445b3deced8f clarified modules;
wenzelm
parents: 62854
diff changeset
   185
  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
   186
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   187
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   188
  /* read lines */
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   189
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   190
  def read_lines(reader: BufferedReader, progress: String => Unit): List[String] =
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   191
  {
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   192
    val result = new mutable.ListBuffer[String]
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   193
    var line: String = null
51251
d55cce4d72dd more permissive File.read_lines, which is relevant for Managed_Process join/kill;
wenzelm
parents: 50845
diff changeset
   194
    while ({ line = try { reader.readLine} catch { case _: IOException => null }; line != null }) {
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   195
      progress(line)
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   196
      result += line
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   197
    }
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   198
    reader.close
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   199
    result.toList
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   200
  }
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   201
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50684
diff changeset
   202
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   203
  /* write */
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   204
64002
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
   205
  def write_file(file: JFile, text: CharSequence, make_stream: OutputStream => OutputStream)
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   206
  {
51504
18095684c5a6 basic support for xz files;
wenzelm
parents: 51251
diff changeset
   207
    val stream = make_stream(new FileOutputStream(file))
18095684c5a6 basic support for xz files;
wenzelm
parents: 51251
diff changeset
   208
    val writer = new BufferedWriter(new OutputStreamWriter(stream, UTF8.charset))
64002
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
   209
    try { writer.append(text) } finally { writer.close }
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   210
  }
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   211
64003
73af1d36aeff tuned signature;
wenzelm
parents: 64002
diff changeset
   212
  def write(file: JFile, text: CharSequence): Unit = write_file(file, text, s => s)
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   213
  def write(path: Path, text: CharSequence): Unit = write(path.file, text)
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   214
64002
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
   215
  def write_gzip(file: JFile, text: CharSequence): Unit =
51504
18095684c5a6 basic support for xz files;
wenzelm
parents: 51251
diff changeset
   216
    write_file(file, text, (s: OutputStream) => new GZIPOutputStream(new BufferedOutputStream(s)))
48494
00eb5be9e76b read/write dependency information;
wenzelm
parents: 48418
diff changeset
   217
  def write_gzip(path: Path, text: CharSequence): Unit = write_gzip(path.file, text)
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   218
64002
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
   219
  def write_xz(file: JFile, text: CharSequence, options: XZ.Options): Unit =
64003
73af1d36aeff tuned signature;
wenzelm
parents: 64002
diff changeset
   220
    File.write_file(file, text, s => new XZOutputStream(new BufferedOutputStream(s), options))
73af1d36aeff tuned signature;
wenzelm
parents: 64002
diff changeset
   221
  def write_xz(file: JFile, text: CharSequence): Unit = write_xz(file, text, XZ.options())
64002
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
   222
  def write_xz(path: Path, text: CharSequence, options: XZ.Options): Unit =
08f89f0e8a62 clarified modules;
wenzelm
parents: 64000
diff changeset
   223
    write_xz(path.file, text, options)
64003
73af1d36aeff tuned signature;
wenzelm
parents: 64002
diff changeset
   224
  def write_xz(path: Path, text: CharSequence): Unit = write_xz(path, text, XZ.options())
64000
445b3deced8f clarified modules;
wenzelm
parents: 62854
diff changeset
   225
53336
b3bf6d72fea5 more general backup files;
wenzelm
parents: 52671
diff changeset
   226
  def write_backup(path: Path, text: CharSequence)
b3bf6d72fea5 more general backup files;
wenzelm
parents: 52671
diff changeset
   227
  {
64482
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   228
    if (path.is_file) move(path, path.backup)
62444
wenzelm
parents: 62443
diff changeset
   229
    write(path, text)
53336
b3bf6d72fea5 more general backup files;
wenzelm
parents: 52671
diff changeset
   230
  }
b3bf6d72fea5 more general backup files;
wenzelm
parents: 52671
diff changeset
   231
58610
fffdbce036db added update_cartouches tool;
wenzelm
parents: 56783
diff changeset
   232
  def write_backup2(path: Path, text: CharSequence)
fffdbce036db added update_cartouches tool;
wenzelm
parents: 56783
diff changeset
   233
  {
64482
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   234
    if (path.is_file) move(path, path.backup2)
62444
wenzelm
parents: 62443
diff changeset
   235
    write(path, text)
58610
fffdbce036db added update_cartouches tool;
wenzelm
parents: 56783
diff changeset
   236
  }
fffdbce036db added update_cartouches tool;
wenzelm
parents: 56783
diff changeset
   237
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   238
62703
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   239
  /* append */
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   240
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   241
  def append(file: JFile, text: CharSequence): Unit =
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   242
    Files.write(file.toPath, UTF8.bytes(text.toString),
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   243
      StandardOpenOption.APPEND, StandardOpenOption.CREATE)
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   244
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   245
  def append(path: Path, text: CharSequence): Unit = append(path.file, text)
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   246
01b71da798dd more operations;
wenzelm
parents: 62636
diff changeset
   247
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   248
  /* eq */
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   249
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   250
  def eq(file1: JFile, file2: JFile): Boolean =
49673
2a088cff1e7b more robust File.eq, and thus File.copy of "~~/lib/logo/isabelle.gif";
wenzelm
parents: 49610
diff changeset
   251
    try { java.nio.file.Files.isSameFile(file1.toPath, file2.toPath) }
2a088cff1e7b more robust File.eq, and thus File.copy of "~~/lib/logo/isabelle.gif";
wenzelm
parents: 49610
diff changeset
   252
    catch { case ERROR(_) => false }
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   253
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   254
  def eq(path1: Path, path2: Path): Boolean = eq(path1.file, path2.file)
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   255
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   256
64934
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   257
  /* eq_content */
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   258
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   259
  def eq_content(file1: JFile, file2: JFile): Boolean =
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   260
    if (eq(file1, file2)) true
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   261
    else if (file1.length != file2.length) false
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   262
    else Bytes.read(file1) == Bytes.read(file2)
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   263
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   264
  def eq_content(path1: Path, path2: Path): Boolean = eq_content(path1.file, path2.file)
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   265
795055a0be98 hardlink within JVM;
wenzelm
parents: 64932
diff changeset
   266
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   267
  /* copy */
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   268
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   269
  def copy(src: JFile, dst: JFile)
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   270
  {
61371
17944b500166 clarified, according to Isabelle_System.copy_file in ML;
wenzelm
parents: 61291
diff changeset
   271
    val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst
61373
16ed9b97c72d more accurate imitation of "cp -p -f";
wenzelm
parents: 61371
diff changeset
   272
    if (!eq(src, target))
16ed9b97c72d more accurate imitation of "cp -p -f";
wenzelm
parents: 61371
diff changeset
   273
      Files.copy(src.toPath, target.toPath,
16ed9b97c72d more accurate imitation of "cp -p -f";
wenzelm
parents: 61371
diff changeset
   274
        StandardCopyOption.COPY_ATTRIBUTES,
16ed9b97c72d more accurate imitation of "cp -p -f";
wenzelm
parents: 61371
diff changeset
   275
        StandardCopyOption.REPLACE_EXISTING)
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   276
  }
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   277
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   278
  def copy(path1: Path, path2: Path): Unit = copy(path1.file, path2.file)
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   279
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   280
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   281
  /* move */
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   282
64482
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   283
  def move(src: JFile, dst: JFile)
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   284
  {
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   285
    val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   286
    if (!eq(src, target))
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   287
      Files.move(src.toPath, target.toPath, StandardCopyOption.REPLACE_EXISTING)
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   288
  }
64213
b265dd04d57d clarified file operations;
wenzelm
parents: 64003
diff changeset
   289
64482
43f6c28ff496 clarified File.move: target directory like File.copy;
wenzelm
parents: 64345
diff changeset
   290
  def move(path1: Path, path2: Path): Unit = move(path1.file, path2.file)
48411
5b3440850d36 more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
diff changeset
   291
}