| author | wenzelm | 
| Fri, 05 May 2023 12:01:09 +0200 | |
| changeset 77967 | 6bb2f9b32804 | 
| parent 77718 | 6ad3a412ed97 | 
| child 78194 | da721ba809a4 | 
| permissions | -rw-r--r-- | 
| 54439 | 1 | /* Title: Pure/General/bytes.scala | 
| 2 | Author: Makarius | |
| 3 | ||
| 4 | Immutable byte vectors versus UTF8 strings. | |
| 5 | */ | |
| 6 | ||
| 7 | package isabelle | |
| 8 | ||
| 9 | ||
| 76351 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 10 | import java.io.{ByteArrayInputStream, ByteArrayOutputStream, FileInputStream, FileOutputStream, InputStream, OutputStream, File as JFile}
 | 
| 65070 | 11 | import java.net.URL | 
| 77711 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 12 | import java.nio.ByteBuffer | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 13 | import java.nio.channels.FileChannel | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 14 | import java.nio.file.StandardOpenOption | 
| 77712 
dd4bb80dbc3a
tuned performance: much faster low-level operation;
 wenzelm parents: 
77711diff
changeset | 15 | import java.util.Arrays | 
| 76353 | 16 | import org.tukaani.xz | 
| 17 | import com.github.luben.zstd | |
| 54440 | 18 | |
| 19 | ||
| 75393 | 20 | object Bytes {
 | 
| 54439 | 21 | val empty: Bytes = new Bytes(Array[Byte](), 0, 0) | 
| 22 | ||
| 75393 | 23 |   def apply(s: CharSequence): Bytes = {
 | 
| 54439 | 24 | val str = s.toString | 
| 25 | if (str.isEmpty) empty | |
| 26 |     else {
 | |
| 62527 | 27 | val b = UTF8.bytes(str) | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
54440diff
changeset | 28 | new Bytes(b, 0, b.length) | 
| 54439 | 29 | } | 
| 30 | } | |
| 54440 | 31 | |
| 63779 | 32 | def apply(a: Array[Byte]): Bytes = apply(a, 0, a.length) | 
| 33 | ||
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
54440diff
changeset | 34 | def apply(a: Array[Byte], offset: Int, length: Int): Bytes = | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
54440diff
changeset | 35 | if (length == 0) empty | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
54440diff
changeset | 36 |     else {
 | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
54440diff
changeset | 37 | val b = new Array[Byte](length) | 
| 55618 | 38 | System.arraycopy(a, offset, b, 0, length) | 
| 54442 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
54440diff
changeset | 39 | new Bytes(b, 0, b.length) | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
54440diff
changeset | 40 | } | 
| 
c39972ddd672
more specific Protocol_Output: empty message.body, main content via bytes/text;
 wenzelm parents: 
54440diff
changeset | 41 | |
| 69454 | 42 |   val newline: Bytes = apply("\n")
 | 
| 54440 | 43 | |
| 73576 | 44 | |
| 45 | /* base64 */ | |
| 46 | ||
| 75587 | 47 |   def decode_base64(s: String): Bytes = {
 | 
| 75620 | 48 | val a = Base64.decode(s) | 
| 68108 | 49 | new Bytes(a, 0, a.length) | 
| 50 | } | |
| 51 | ||
| 75579 | 52 | |
| 54440 | 53 | /* read */ | 
| 54 | ||
| 64005 
f6e965cf1617
clarified magic values (see also java/io/BufferedInputStream.java);
 wenzelm parents: 
64004diff
changeset | 55 | def read_stream(stream: InputStream, limit: Int = Integer.MAX_VALUE, hint: Int = 1024): Bytes = | 
| 64004 | 56 | if (limit == 0) empty | 
| 57 |     else {
 | |
| 73414 | 58 | val out_size = (if (limit == Integer.MAX_VALUE) hint else limit) max 1024 | 
| 59 | val out = new ByteArrayOutputStream(out_size) | |
| 64005 
f6e965cf1617
clarified magic values (see also java/io/BufferedInputStream.java);
 wenzelm parents: 
64004diff
changeset | 60 | val buf = new Array[Byte](8192) | 
| 64004 | 61 | var m = 0 | 
| 54440 | 62 | |
| 75709 | 63 |       while ({
 | 
| 73554 | 64 | m = stream.read(buf, 0, buf.length min (limit - out.size)) | 
| 64004 | 65 | if (m != -1) out.write(buf, 0, m) | 
| 75709 | 66 | m != -1 && limit > out.size | 
| 67 | }) () | |
| 64004 | 68 | |
| 69 | new Bytes(out.toByteArray, 0, out.size) | |
| 54440 | 70 | } | 
| 64001 
7ecb22be8f03
more general read_stream: return actual byte count;
 wenzelm parents: 
63779diff
changeset | 71 | |
| 77717 | 72 | def read_url(name: String): Bytes = using(Url(name).openStream)(read_stream(_)) | 
| 73 | ||
| 77718 | 74 |   def read_file(file: JFile, offset: Long = 0L, limit: Long = Long.MaxValue): Bytes = {
 | 
| 77711 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 75 | val start = offset.max(0L) | 
| 77718 | 76 | val len = (file.length - start).max(0L).min(limit) | 
| 77711 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 77 |     if (len > Integer.MAX_VALUE) error("Cannot read large file slice: " + Space.bytes(len).print)
 | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 78 | else if (len == 0L) empty | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 79 |     else {
 | 
| 77718 | 80 |       using(FileChannel.open(file.toPath, StandardOpenOption.READ)) { java_path =>
 | 
| 81 | java_path.position(start) | |
| 77711 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 82 | val n = len.toInt | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 83 | val buf = ByteBuffer.allocate(n) | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 84 | var i = 0 | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 85 | var m = 0 | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 86 |         while ({
 | 
| 77718 | 87 | m = java_path.read(buf) | 
| 77711 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 88 | if (m != -1) i += m | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 89 | m != -1 && n > i | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 90 | }) () | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 91 | new Bytes(buf.array, 0, i) | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 92 | } | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 93 | } | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 94 | } | 
| 
25fd62cba347
clarified signature: more general operation Bytes.read_slice;
 wenzelm parents: 
76361diff
changeset | 95 | |
| 77718 | 96 | def read(file: JFile): Bytes = read_file(file) | 
| 97 | def read(path: Path): Bytes = read_file(path.file) | |
| 98 | ||
| 64229 | 99 | |
| 100 | /* write */ | |
| 101 | ||
| 69393 
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
 wenzelm parents: 
69365diff
changeset | 102 | def write(file: JFile, bytes: Bytes): Unit = | 
| 
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
 wenzelm parents: 
69365diff
changeset | 103 | using(new FileOutputStream(file))(bytes.write_stream(_)) | 
| 64229 | 104 | |
| 105 | def write(path: Path, bytes: Bytes): Unit = write(path.file, bytes) | |
| 54439 | 106 | } | 
| 107 | ||
| 108 | final class Bytes private( | |
| 109 | protected val bytes: Array[Byte], | |
| 110 | protected val offset: Int, | |
| 75393 | 111 |   val length: Int) extends CharSequence {
 | 
| 54439 | 112 | /* equality */ | 
| 113 | ||
| 75393 | 114 |   override def equals(that: Any): Boolean = {
 | 
| 54440 | 115 |     that match {
 | 
| 116 | case other: Bytes => | |
| 77712 
dd4bb80dbc3a
tuned performance: much faster low-level operation;
 wenzelm parents: 
77711diff
changeset | 117 | this.eq(other) || | 
| 
dd4bb80dbc3a
tuned performance: much faster low-level operation;
 wenzelm parents: 
77711diff
changeset | 118 | Arrays.equals(bytes, offset, offset + length, | 
| 
dd4bb80dbc3a
tuned performance: much faster low-level operation;
 wenzelm parents: 
77711diff
changeset | 119 | other.bytes, other.offset, other.offset + other.length) | 
| 54440 | 120 | case _ => false | 
| 121 | } | |
| 122 | } | |
| 123 | ||
| 75393 | 124 |   private lazy val hash: Int = {
 | 
| 54439 | 125 | var h = 0 | 
| 126 |     for (i <- offset until offset + length) {
 | |
| 127 | val b = bytes(i).asInstanceOf[Int] & 0xFF | |
| 128 | h = 31 * h + b | |
| 129 | } | |
| 130 | h | |
| 131 | } | |
| 132 | ||
| 133 | override def hashCode(): Int = hash | |
| 134 | ||
| 135 | ||
| 136 | /* content */ | |
| 137 | ||
| 54512 | 138 | lazy val sha1_digest: SHA1.Digest = SHA1.digest(bytes) | 
| 54440 | 139 | |
| 69448 | 140 | def is_empty: Boolean = length == 0 | 
| 141 | ||
| 142 | def iterator: Iterator[Byte] = | |
| 143 | for (i <- (offset until (offset + length)).iterator) | |
| 144 | yield bytes(i) | |
| 145 | ||
| 75393 | 146 |   def array: Array[Byte] = {
 | 
| 69365 
c5b3860d29ef
avoid loading of font file, to eliminate "Illegal reflective access by com.lowagie.text.pdf.MappedRandomAccessFile$1 (iText-2.1.5.jar) to method java.nio.DirectByteBuffer.cleaner()" -- due to com.lowagie.text.pdf.TrueTypeFont.process() / RandomAccessFileOrArray;
 wenzelm parents: 
68167diff
changeset | 147 | val a = new Array[Byte](length) | 
| 
c5b3860d29ef
avoid loading of font file, to eliminate "Illegal reflective access by com.lowagie.text.pdf.MappedRandomAccessFile$1 (iText-2.1.5.jar) to method java.nio.DirectByteBuffer.cleaner()" -- due to com.lowagie.text.pdf.TrueTypeFont.process() / RandomAccessFileOrArray;
 wenzelm parents: 
68167diff
changeset | 148 | System.arraycopy(bytes, offset, a, 0, length) | 
| 
c5b3860d29ef
avoid loading of font file, to eliminate "Illegal reflective access by com.lowagie.text.pdf.MappedRandomAccessFile$1 (iText-2.1.5.jar) to method java.nio.DirectByteBuffer.cleaner()" -- due to com.lowagie.text.pdf.TrueTypeFont.process() / RandomAccessFileOrArray;
 wenzelm parents: 
68167diff
changeset | 149 | a | 
| 
c5b3860d29ef
avoid loading of font file, to eliminate "Illegal reflective access by com.lowagie.text.pdf.MappedRandomAccessFile$1 (iText-2.1.5.jar) to method java.nio.DirectByteBuffer.cleaner()" -- due to com.lowagie.text.pdf.TrueTypeFont.process() / RandomAccessFileOrArray;
 wenzelm parents: 
68167diff
changeset | 150 | } | 
| 
c5b3860d29ef
avoid loading of font file, to eliminate "Illegal reflective access by com.lowagie.text.pdf.MappedRandomAccessFile$1 (iText-2.1.5.jar) to method java.nio.DirectByteBuffer.cleaner()" -- due to com.lowagie.text.pdf.TrueTypeFont.process() / RandomAccessFileOrArray;
 wenzelm parents: 
68167diff
changeset | 151 | |
| 73561 
c83152933579
clarified signature: Bytes extends CharSequence already (see d201996f72a8);
 wenzelm parents: 
73559diff
changeset | 152 | def text: String = UTF8.decode_permissive(this) | 
| 65279 
fa62e095d8f1
clarified signature (again, see also 3ed43cfc8b14);
 wenzelm parents: 
65070diff
changeset | 153 | |
| 76236 | 154 |   def wellformed_text: Option[String] = {
 | 
| 155 | val s = text | |
| 156 | if (this == Bytes(s)) Some(s) else None | |
| 157 | } | |
| 158 | ||
| 75587 | 159 |   def encode_base64: String = {
 | 
| 68094 | 160 | val b = | 
| 161 | if (offset == 0 && length == bytes.length) bytes | |
| 162 | else Bytes(bytes, offset, length).bytes | |
| 75620 | 163 | Base64.encode(b) | 
| 68094 | 164 | } | 
| 165 | ||
| 76236 | 166 | def maybe_encode_base64: (Boolean, String) = | 
| 167 |     wellformed_text match {
 | |
| 168 | case Some(s) => (false, s) | |
| 169 | case None => (true, encode_base64) | |
| 170 | } | |
| 68106 | 171 | |
| 77716 | 172 | override def toString: String = | 
| 173 |     if (is_empty) "Bytes.empty" else "Bytes(" + Space.bytes(length).print + ")"
 | |
| 54439 | 174 | |
| 72885 | 175 | def proper: Option[Bytes] = if (is_empty) None else Some(this) | 
| 176 | def proper_text: Option[String] = if (is_empty) None else Some(text) | |
| 65630 | 177 | |
| 54439 | 178 | def +(other: Bytes): Bytes = | 
| 72885 | 179 | if (other.is_empty) this | 
| 180 | else if (is_empty) other | |
| 54439 | 181 |     else {
 | 
| 182 | val new_bytes = new Array[Byte](length + other.length) | |
| 55618 | 183 | System.arraycopy(bytes, offset, new_bytes, 0, length) | 
| 184 | System.arraycopy(other.bytes, other.offset, new_bytes, length, other.length) | |
| 54439 | 185 | new Bytes(new_bytes, 0, new_bytes.length) | 
| 186 | } | |
| 54440 | 187 | |
| 188 | ||
| 60833 | 189 | /* CharSequence operations */ | 
| 190 | ||
| 191 | def charAt(i: Int): Char = | |
| 192 | if (0 <= i && i < length) (bytes(offset + i).asInstanceOf[Int] & 0xFF).asInstanceOf[Char] | |
| 193 | else throw new IndexOutOfBoundsException | |
| 194 | ||
| 75393 | 195 |   def subSequence(i: Int, j: Int): Bytes = {
 | 
| 60833 | 196 | if (0 <= i && i <= j && j <= length) new Bytes(bytes, offset + i, j - i) | 
| 197 | else throw new IndexOutOfBoundsException | |
| 198 | } | |
| 199 | ||
| 69448 | 200 | def trim_line: Bytes = | 
| 77714 | 201 |     if (length >= 2 && charAt(length - 2) == 13 && charAt(length - 1) == 10) {
 | 
| 69448 | 202 | subSequence(0, length - 2) | 
| 77714 | 203 | } | 
| 204 |     else if (length >= 1 && (charAt(length - 1) == 13 || charAt(length - 1) == 10)) {
 | |
| 69448 | 205 | subSequence(0, length - 1) | 
| 77714 | 206 | } | 
| 69448 | 207 | else this | 
| 208 | ||
| 60833 | 209 | |
| 64004 | 210 | /* streams */ | 
| 211 | ||
| 212 | def stream(): ByteArrayInputStream = new ByteArrayInputStream(bytes, offset, length) | |
| 213 | ||
| 214 | def write_stream(stream: OutputStream): Unit = stream.write(bytes, offset, length) | |
| 215 | ||
| 216 | ||
| 76351 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 217 | /* XZ / Zstd data compression */ | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 218 | |
| 76358 | 219 | def detect_xz: Boolean = | 
| 76351 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 220 | length >= 6 && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 221 | bytes(offset) == 0xFD.toByte && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 222 | bytes(offset + 1) == 0x37.toByte && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 223 | bytes(offset + 2) == 0x7A.toByte && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 224 | bytes(offset + 3) == 0x58.toByte && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 225 | bytes(offset + 4) == 0x5A.toByte && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 226 | bytes(offset + 5) == 0x00.toByte | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 227 | |
| 76358 | 228 | def detect_zstd: Boolean = | 
| 76351 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 229 | length >= 4 && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 230 | bytes(offset) == 0x28.toByte && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 231 | bytes(offset + 1) == 0xB5.toByte && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 232 | bytes(offset + 2) == 0x2F.toByte && | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 233 | bytes(offset + 3) == 0xFD.toByte | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 234 | |
| 76358 | 235 | def uncompress_xz(cache: Compress.Cache = Compress.Cache.none): Bytes = | 
| 236 | using(new xz.XZInputStream(stream(), cache.for_xz))(Bytes.read_stream(_, hint = length)) | |
| 237 | ||
| 238 |   def uncompress_zstd(cache: Compress.Cache = Compress.Cache.none): Bytes = {
 | |
| 239 | Zstd.init() | |
| 240 | val n = zstd.Zstd.decompressedSize(bytes, offset, length) | |
| 241 |     if (n > 0 && n < Integer.MAX_VALUE) {
 | |
| 242 | Bytes(zstd.Zstd.decompress(array, n.toInt)) | |
| 243 | } | |
| 244 |     else {
 | |
| 245 | using(new zstd.ZstdInputStream(stream(), cache.for_zstd))(Bytes.read_stream(_, hint = length)) | |
| 246 | } | |
| 247 | } | |
| 54440 | 248 | |
| 76351 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 249 | def uncompress(cache: Compress.Cache = Compress.Cache.none): Bytes = | 
| 76358 | 250 | if (detect_xz) uncompress_xz(cache = cache) | 
| 251 | else if (detect_zstd) uncompress_zstd(cache = cache) | |
| 252 |     else error("Cannot detect compression scheme")
 | |
| 64004 | 253 | |
| 76351 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 254 | def compress( | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 255 | options: Compress.Options = Compress.Options(), | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 256 | cache: Compress.Cache = Compress.Cache.none | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 257 |   ): Bytes = {
 | 
| 76358 | 258 |     options match {
 | 
| 259 | case options_xz: Compress.Options_XZ => | |
| 260 | val result = new ByteArrayOutputStream(length) | |
| 261 | using(new xz.XZOutputStream(result, options_xz.make, cache.for_xz))(write_stream) | |
| 262 | new Bytes(result.toByteArray, 0, result.size) | |
| 263 | case options_zstd: Compress.Options_Zstd => | |
| 264 | Zstd.init() | |
| 76361 
3b9f36ef7365
tuned: avoid redundant copy of potentially large array;
 wenzelm parents: 
76358diff
changeset | 265 | Bytes(zstd.Zstd.compress(if (offset == 0) bytes else array, options_zstd.level)) | 
| 76358 | 266 | } | 
| 64004 | 267 | } | 
| 68167 | 268 | |
| 75393 | 269 | def maybe_compress( | 
| 76351 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 270 | options: Compress.Options = Compress.Options(), | 
| 
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
 wenzelm parents: 
76350diff
changeset | 271 | cache: Compress.Cache = Compress.Cache.none | 
| 75393 | 272 |   ) : (Boolean, Bytes) = {
 | 
| 68167 | 273 | val compressed = compress(options = options, cache = cache) | 
| 274 | if (compressed.length < length) (true, compressed) else (false, this) | |
| 275 | } | |
| 54439 | 276 | } |