upgrade to recent decompress
This commit is contained in:
parent
0ce16cbf6b
commit
a124b3eb30
7
_tags
7
_tags
|
@ -1,19 +1,20 @@
|
|||
true : bin_annot, safe_string, principal, color(always)
|
||||
true : warn(+A-4-44-48)
|
||||
true : package(rresult logs ipaddr bos hex ptime astring duration cstruct decompress asn1-combinators)
|
||||
true : package(rresult logs ipaddr bos hex ptime astring duration cstruct decompress)
|
||||
"src" : include
|
||||
|
||||
<src/vmm_lwt.{ml,mli}>: package(lwt lwt.unix)
|
||||
<src/vmm_tls_lwt.{ml,mli}>: package(lwt tls.lwt)
|
||||
<src/vmm_tls.{ml,mli}>: package(x509)
|
||||
<src/vmm_vmmd.{ml,mli}>: package(ptime.clock.os)
|
||||
<src/vmm_asn.{ml,mli}>: package(asn1-combinators)
|
||||
|
||||
<app/*>: package(lwt.unix cmdliner logs.fmt fmt.cli logs.cli fmt.tty lwt ipaddr.unix)
|
||||
<app/*>: package(checkseum.c lwt.unix cmdliner logs.fmt fmt.cli logs.cli fmt.tty lwt ipaddr.unix asn1-combinators)
|
||||
<app/vmmd.{ml,native,byte}>: package(ptime.clock.os)
|
||||
<app/vmmd_console.{ml,native,byte}>: package(ptime.clock.os)
|
||||
<app/vmmd_log.{ml,native,byte}>: package(ptime.clock.os)
|
||||
<app/vmmd_tls.{ml,native,byte}>: package(tls.lwt ptime.clock.os)
|
||||
<app/vmmd_stats.{ml,native,byte}>: link_vmm_stats, package(asn1-combinators)
|
||||
<app/vmmd_stats.{ml,native,byte}>: link_vmm_stats
|
||||
|
||||
<app/vmmc_remote.{ml,native,byte}>: package(nocrypto tls.lwt nocrypto.lwt)
|
||||
<app/vmmc_bistro.{ml,native,byte}>: package(nocrypto tls.lwt nocrypto.lwt)
|
||||
|
|
2
opam
2
opam
|
@ -26,7 +26,7 @@ depends: [
|
|||
"nocrypto"
|
||||
"asn1-combinators" {>= "0.2.0"}
|
||||
"duration"
|
||||
"decompress" {= "0.7"}
|
||||
"decompress" {>= "0.8.1"}
|
||||
]
|
||||
|
||||
build: [
|
||||
|
|
|
@ -1,40 +1,32 @@
|
|||
(* copied n 2018-03-18 from github.com:mirage/decompress.git (MIT licensed) at
|
||||
db86cf8a57ab1b4fb21e10f99093bdae425d48db by Hannes Mehnert
|
||||
|
||||
TODO: should use Deflate/Inflate.bigstring instead of bytes (to avoid
|
||||
unnecessary copies)
|
||||
(* copied n 2018-03-18 from github.com:mirage/decompress.git (bin/easy.ml)
|
||||
(MIT licensed) at fa1551b19165503fc77da6da99411fa59b6a7f6a by Hannes Mehnert
|
||||
*)
|
||||
|
||||
open Decompress
|
||||
|
||||
(* Keep in your mind, this is an easy example of Decompress but not efficient.
|
||||
Don't copy/paste this code in a productive environment.
|
||||
*)
|
||||
Don't copy/paste this code in a productive environment. *)
|
||||
|
||||
let compress ?(level = 4) data =
|
||||
let input_buffer = Bytes.create 0xFFFF in
|
||||
(* We need to allocate an input buffer, the size of this buffer is important.
|
||||
In fact, the Lz77 algorithm can find a pattern (and compress) only on
|
||||
this input buffer. So if the input buffer is small, the algorithm has no
|
||||
chance to find many patterns.
|
||||
In fact, the Lz77 algorithm can find a pattern (and compress) only on this
|
||||
input buffer. So if the input buffer is small, the algorithm has no chance
|
||||
to find many patterns.
|
||||
|
||||
If it is big, the algorithm can find a far pattern and keep this pattern
|
||||
as long as it tries to compress. The optimal size seems to be [1 << 15]
|
||||
bytes (a bigger buffer is not necessary because the distance can be upper
|
||||
than [1 << 15]).
|
||||
*)
|
||||
than [1 << 15]). *)
|
||||
let output_buffer = Bytes.create 0xFFFF in
|
||||
(* We need to allocate an output buffer, is like you can. it's depends your
|
||||
capabilities of your writing.
|
||||
*)
|
||||
|
||||
capabilities of your writing. *)
|
||||
let pos = ref 0 in
|
||||
let res = Buffer.create (String.length data) in
|
||||
(* The buffer is not a good idea. In fact, we can have a memory problem with
|
||||
that (like if the output is too big). You need to keep in your mind that is
|
||||
insecure to let a buffer to grow automatically (an attacker can use this
|
||||
behaviour).
|
||||
*)
|
||||
that (like if the output is too big). You need to keep in your mind that
|
||||
is insecure to let a buffer to grow automatically (an attacker can use
|
||||
this behaviour). *)
|
||||
|
||||
(* This is the same interface as [caml-zip]. A refiller and a flusher. The
|
||||
refiller send you the maximum byte than you can [blit] inside the input
|
||||
|
@ -52,19 +44,16 @@ let compress ?(level = 4) data =
|
|||
One argument (optionnal) is missing, it's the [meth]. This argument is
|
||||
used to limit the memory used by the state internally. In fact, Decompress
|
||||
(and `zlib`) need to keep all of your input to calculate at the end the
|
||||
frequencies and the dictionarie. So if you want to compress a big file,
|
||||
may be you will have a memory problem (because, all your file will be
|
||||
present in the memory). So you can specify a method to flush the internal
|
||||
memory (with SYNC, PARTIAL or FULL - see the documentation about that) at
|
||||
each [n] bytes, like: ~meth:(PARTIAL, 4096) flushes the internal memory
|
||||
when we compute 4096 bytes of your input.
|
||||
frequencies and the dictionary. So if you want to compress a big file, may
|
||||
be you will have a memory problem (because, all your file will be present
|
||||
in the memory). So you can specify a method to flush the internal memory
|
||||
(with SYNC, PARTIAL or FULL - see the documentation about that) at each
|
||||
[n] bytes, like: ~meth:(PARTIAL, 4096) flushes the internal memory when we
|
||||
compute 4096 bytes of your input.
|
||||
|
||||
If [meth] is specified, the refiller has a [Some] as the second parameter.
|
||||
Otherwise, it is [None].
|
||||
*)
|
||||
match
|
||||
Deflate.bytes
|
||||
input_buffer output_buffer
|
||||
Otherwise, it is [None]. *)
|
||||
Zlib_deflate.bytes input_buffer output_buffer
|
||||
(fun input_buffer -> function
|
||||
| Some max ->
|
||||
let n = min max (min 0xFFFF (String.length data - !pos)) in
|
||||
|
@ -79,38 +68,31 @@ let compress ?(level = 4) data =
|
|||
(fun output_buffer len ->
|
||||
Buffer.add_subbytes res output_buffer 0 len ;
|
||||
0xFFFF )
|
||||
(Deflate.default ~proof:B.proof_bytes level)
|
||||
(Zlib_deflate.default ~witness:B.bytes level)
|
||||
(* We can specify the level of the compression, see the documentation to know
|
||||
what we use for each level. The default is 4.
|
||||
*)
|
||||
with
|
||||
what we use for each level. The default is 4. *)
|
||||
|> function
|
||||
| Ok _ -> Buffer.contents res
|
||||
| Error e ->
|
||||
Logs.err (fun m -> m "error %a while compressing" Deflate.pp_error e) ;
|
||||
Logs.err (fun m -> m "error %a while compressing" Zlib_deflate.pp_error e) ;
|
||||
invalid_arg "cannot compress"
|
||||
|
||||
let uncompress data =
|
||||
let input_buffer = Bytes.create 0xFFFF in
|
||||
(* We need to allocate an input buffer. it's depends your capabilities of
|
||||
your reading.
|
||||
*)
|
||||
your reading. *)
|
||||
let output_buffer = Bytes.create 0xFFFF in
|
||||
(* Same as [compress]. *)
|
||||
let window = Window.create ~proof:B.proof_bytes in
|
||||
let window = Window.create ~witness:B.bytes in
|
||||
(* We allocate a window. We let the user to do that to reuse the window if
|
||||
it's needed. In fact, the window is a big buffer ([size = (1 << 15)]) and
|
||||
allocate this buffer costs.
|
||||
|
||||
So in this case, we decompress only one time but if you want to decompress
|
||||
some flows, you can reuse this window after a [Window.reset].
|
||||
*)
|
||||
|
||||
some flows, you can reuse this window after a [Window.reset]. *)
|
||||
let pos = ref 0 in
|
||||
let res = Buffer.create (String.length data) in
|
||||
|
||||
match
|
||||
Inflate.bytes
|
||||
input_buffer output_buffer
|
||||
Zlib_inflate.bytes input_buffer output_buffer
|
||||
(* Same logic as [compress]. *)
|
||||
(fun input_buffer ->
|
||||
let n = min 0xFFFF (String.length data - !pos) in
|
||||
|
@ -120,9 +102,9 @@ let uncompress data =
|
|||
(fun output_buffer len ->
|
||||
Buffer.add_subbytes res output_buffer 0 len ;
|
||||
0xFFFF )
|
||||
(Inflate.default window)
|
||||
with
|
||||
(Zlib_inflate.default ~witness:B.bytes window)
|
||||
|> function
|
||||
| Ok _ -> Ok (Buffer.contents res)
|
||||
| Error exn ->
|
||||
Logs.err (fun m -> m "error %a while uncompressing" Inflate.pp_error exn) ;
|
||||
Logs.err (fun m -> m "error %a while uncompressing" Zlib_inflate.pp_error exn) ;
|
||||
Error ()
|
||||
|
|
Loading…
Reference in a new issue