src/Pure/General/bytes.scala
changeset 54440 2c4940d2edf7
parent 54439 621a155c7715
child 54442 c39972ddd672
--- a/src/Pure/General/bytes.scala	Thu Nov 14 16:55:32 2013 +0100
+++ b/src/Pure/General/bytes.scala	Thu Nov 14 17:17:57 2013 +0100
@@ -8,6 +8,9 @@
 package isabelle
 
 
+import java.io.{File => JFile, OutputStream, FileInputStream}
+
+
 object Bytes
 {
   val empty: Bytes = new Bytes(Array[Byte](), 0, 0)
@@ -17,10 +20,32 @@
     val str = s.toString
     if (str.isEmpty) empty
     else {
-      val bytes = UTF8.string_bytes(str)
+      val bytes = str.getBytes(UTF8.charset)
       new Bytes(bytes, 0, bytes.length)
     }
   }
+
+
+  /* read */
+
+  def read(file: JFile): Bytes =
+  {
+    var i = 0
+    var m = 0
+    val n = file.length.toInt
+    val bytes = new Array[Byte](n)
+
+    val stream = new FileInputStream(file)
+    try {
+      do {
+        m = stream.read(bytes, i, n - i)
+        if (m != -1) i += m
+      } while (m != -1 && n > i)
+    }
+    finally { stream.close }
+
+    new Bytes(bytes, 0, bytes.length)
+  }
 }
 
 final class Bytes private(
@@ -30,6 +55,17 @@
 {
   /* equality */
 
+  override def equals(that: Any): Boolean =
+  {
+    that match {
+      case other: Bytes =>
+        if (this eq other) true
+        else if (length != other.length) false
+        else (0 until length).forall(i => bytes(offset + i) == other.bytes(other.offset + i))
+      case _ => false
+    }
+  }
+
   private lazy val hash: Int =
   {
     var h = 0
@@ -42,32 +78,28 @@
 
   override def hashCode(): Int = hash
 
-  override def equals(that: Any): Boolean =
-  {
-    that match {
-      case other: Bytes =>
-        if (this eq other) true
-        else if (length != other.length) false
-        else (0 until length).forall(i => bytes(offset + i) == other.bytes(other.offset + i))
-      case _ => false
-    }
-  }
-
 
   /* content */
 
+  def sha1_digest: SHA1.Digest = SHA1.digest(bytes)
+
   override def toString: String = new String(bytes, offset, length, UTF8.charset)
 
-  def is_empty: Boolean = length == 0
+  def isEmpty: Boolean = length == 0
 
   def +(other: Bytes): Bytes =
-    if (other.is_empty) this
-    else if (is_empty) other
+    if (other.isEmpty) this
+    else if (isEmpty) other
     else {
       val new_bytes = new Array[Byte](length + other.length)
       java.lang.System.arraycopy(bytes, offset, new_bytes, 0, length)
       java.lang.System.arraycopy(other.bytes, other.offset, new_bytes, length, other.length)
       new Bytes(new_bytes, 0, new_bytes.length)
     }
+
+
+  /* write */
+
+  def write(stream: OutputStream): Unit = stream.write(bytes, offset, length)
 }