package devkit
Development kit - general purpose library
Install
Dune Dependency
Authors
Maintainers
Sources
devkit-1.20240429.tbz
sha256=222f8ac131b1d970dab7eeb2714bfd6b9338b88b1082e6e01c136ae19e7eaef4
sha512=c9e6d93e3d21e5530c0f4d5baca51bf1f0a5d19248f8af7678d0665bb5cdf295d7aaaaa3e50eb2e44b8720e55097cc675af4dc8ec45acf9da39feb3eae1405d5
doc/src/devkit.core/gzip_stream.ml.html
Source file gzip_stream.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
(***********************************************************************) (* *) (* The CamlZip library *) (* *) (* Xavier Leroy, projet Cristal, INRIA Rocquencourt *) (* *) (* Copyright 2001 Institut National de Recherche en Informatique et *) (* en Automatique. All rights reserved. This file is distributed *) (* under the terms of the GNU Library General Public License, with *) (* the special exception on linking described in file LICENSE. *) (* *) (***********************************************************************) (* Origin: $ Id: gzip.ml,v 1.2 2006/04/04 08:29:07 xleroy Exp $ *) (* Module [Gzip_stream]: reading and writing to/from [gzip] compressed streams *) exception Error of string let buffer_size = 1024 type in_channel = { in_chan: IO.input; in_buffer: bytes; mutable in_pos: int; mutable in_avail: int; mutable in_eof: bool; in_stream: Zlib.stream; mutable in_size: int32; mutable in_crc: int32; char_buffer: bytes } let open_in ic = (* Superficial parsing of header *) begin try let id1 = IO.read_byte ic in let id2 = IO.read_byte ic in if id1 <> 0x1F || id2 <> 0x8B then raise(Error("bad magic number, not a gzip file")); let cm = IO.read_byte ic in if cm <> 8 then raise(Error("unknown compression method")); let flags = IO.read_byte ic in if flags land 0xE0 <> 0 then raise(Error("bad flags, not a gzip file")); for _ = 1 to 6 do ignore(IO.read_byte ic) done; if flags land 0x04 <> 0 then begin (* Skip extra data *) let len1 = IO.read_byte ic in let len2 = IO.read_byte ic in for _ = 1 to len1 + len2 lsl 8 do ignore(IO.read_byte ic) done end; if flags land 0x08 <> 0 then begin (* Skip original file name *) while IO.read_byte ic <> 0 do () done end; if flags land 0x10 <> 0 then begin (* Skip comment *) while IO.read_byte ic <> 0 do () done end; if flags land 0x02 <> 0 then begin (* Skip header CRC *) ignore(IO.read_byte ic); ignore(IO.read_byte ic) end with IO.No_more_input -> raise(Error("premature end of input, not a gzip stream")) end; { in_chan = ic; in_buffer = Bytes.create buffer_size; in_pos = 0; in_avail = 0; in_eof = false; in_stream = Zlib.inflate_init false; in_size = Int32.zero; in_crc = Int32.zero; char_buffer = Bytes.create 1 } let read_byte iz = if iz.in_avail = 0 then begin let n = IO.input iz.in_chan iz.in_buffer 0 (Bytes.length iz.in_buffer) in iz.in_pos <- 0; iz.in_avail <- n end; let c = Bytes.get iz.in_buffer iz.in_pos in iz.in_pos <- iz.in_pos + 1; iz.in_avail <- iz.in_avail - 1; Char.code c let read_int32 iz = let b1 = read_byte iz in let b2 = read_byte iz in let b3 = read_byte iz in let b4 = read_byte iz in Int32.logor (Int32.of_int b1) (Int32.logor (Int32.shift_left (Int32.of_int b2) 8) (Int32.logor (Int32.shift_left (Int32.of_int b3) 16) (Int32.shift_left (Int32.of_int b4) 24))) let rec input iz buf pos len = if pos < 0 || len < 0 || pos + len > Bytes.length buf then invalid_arg "Gzip_stream.input"; if iz.in_eof then 0 else begin if iz.in_avail = 0 then begin let n = try IO.input iz.in_chan iz.in_buffer 0 (Bytes.length iz.in_buffer) with IO.No_more_input -> raise(Error("truncated stream")) in iz.in_pos <- 0; iz.in_avail <- n end; let (finished, used_in, used_out) = try Zlib.inflate iz.in_stream iz.in_buffer iz.in_pos iz.in_avail buf pos len Zlib.Z_SYNC_FLUSH with Zlib.Error(_, _) -> raise(Error("error during decompression")) in iz.in_pos <- iz.in_pos + used_in; iz.in_avail <- iz.in_avail - used_in; iz.in_crc <- Zlib.update_crc iz.in_crc buf pos used_out; iz.in_size <- Int32.add iz.in_size (Int32.of_int used_out); if finished then begin try let crc = read_int32 iz in let size = read_int32 iz in if iz.in_crc <> crc then raise(Error("CRC mismatch, data corrupted")); if iz.in_size <> size then raise(Error("size mismatch, data corrupted")); iz.in_eof <- true; used_out with IO.No_more_input -> raise(Error("truncated stream")) end else if used_out = 0 then input iz buf pos len else used_out end let rec really_input iz buf pos len = if len <= 0 then () else begin let n = input iz buf pos len in if n = 0 then raise IO.No_more_input; really_input iz buf (pos + n) (len - n) end let input_char iz = if input iz iz.char_buffer 0 1 = 0 then raise IO.No_more_input else Bytes.get iz.char_buffer 0 let input_byte iz = Char.code (input_char iz) let dispose iz = iz.in_eof <- true; Zlib.inflate_end iz.in_stream let close_in iz = dispose iz; IO.close_in iz.in_chan type 'a out_channel = { out_chan: 'a IO.output; out_buffer: bytes; mutable out_pos: int; mutable out_avail: int; out_stream: Zlib.stream; mutable out_size: int32; mutable out_crc: int32; char_buffer: bytes } let open_out ?(level = 6) oc = if level < 1 || level > 9 then invalid_arg "Gzip_stream.open_output: bad level"; (* Write minimal header *) IO.write_byte oc 0x1F; (* ID1 *) IO.write_byte oc 0x8B; (* ID2 *) IO.write_byte oc 8; (* compression method *) IO.write_byte oc 0; (* flags *) for _ = 1 to 4 do IO.write_byte oc 0 done; (* mtime *) IO.write_byte oc 0; (* xflags *) IO.write_byte oc 0xFF; (* OS (unknown) *) { out_chan = oc; out_buffer = Bytes.create buffer_size; out_pos = 0; out_avail = buffer_size; out_stream = Zlib.deflate_init level false; out_size = Int32.zero; out_crc = Int32.zero; char_buffer = Bytes.create 1 } let rec output oz buf pos len = if pos < 0 || len < 0 || pos + len > Bytes.length buf then invalid_arg "Gzip_stream.output"; (* If output buffer is full, flush it *) if oz.out_avail = 0 then begin ignore (IO.really_output oz.out_chan oz.out_buffer 0 oz.out_pos); oz.out_pos <- 0; oz.out_avail <- Bytes.length oz.out_buffer end; let (_, used_in, used_out) = try Zlib.deflate oz.out_stream buf pos len oz.out_buffer oz.out_pos oz.out_avail Zlib.Z_NO_FLUSH with Zlib.Error(_, _) -> raise (Error("error during compression")) in oz.out_pos <- oz.out_pos + used_out; oz.out_avail <- oz.out_avail - used_out; oz.out_size <- Int32.add oz.out_size (Int32.of_int used_in); oz.out_crc <- Zlib.update_crc oz.out_crc buf pos used_in; if used_in < len then output oz buf (pos + used_in) (len - used_in) let output_char oz c = Bytes.set oz.char_buffer 0 c; output oz oz.char_buffer 0 1 let output_byte oz b = output_char oz (Char.unsafe_chr b) let write_int32 oc n = let r = ref n in for _ = 1 to 4 do IO.write_byte oc (Int32.to_int !r); r := Int32.shift_right_logical !r 8 done let flush oz = let rec do_flush () = (* If output buffer is full, flush it *) if oz.out_avail = 0 then begin ignore (IO.really_output oz.out_chan oz.out_buffer 0 oz.out_pos); oz.out_pos <- 0; oz.out_avail <- Bytes.length oz.out_buffer end; let (finished, _, used_out) = Zlib.deflate oz.out_stream oz.out_buffer 0 0 oz.out_buffer oz.out_pos oz.out_avail Zlib.Z_FINISH in oz.out_pos <- oz.out_pos + used_out; oz.out_avail <- oz.out_avail - used_out; if not finished then do_flush() in do_flush(); (* Final data flush *) if oz.out_pos > 0 then ignore (IO.really_output oz.out_chan oz.out_buffer 0 oz.out_pos); (* Write CRC and size *) write_int32 oz.out_chan oz.out_crc; write_int32 oz.out_chan oz.out_size; (* Dispose of stream *) Zlib.deflate_end oz.out_stream let close_out oz = flush oz; IO.close_out oz.out_chan
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>