Module ObjFile
type segment
=
{
name : string;
pos : int64;
len : int64;
hash : Stdlib.Digest.t;
}
type in_handle
type out_handle
val open_in : file:string -> in_handle
val close_in : in_handle -> unit
val marshal_in_segment : in_handle -> segment:string -> 'a * Stdlib.Digest.t
val get_segment : in_handle -> segment:string -> segment
val segments : in_handle -> segment CString.Map.t
val open_out : file:string -> out_handle
val close_out : out_handle -> unit
val marshal_out_segment : out_handle -> segment:string -> 'a -> unit
val marshal_out_binary : out_handle -> segment:string -> Stdlib.out_channel * (unit -> unit)
marshal_out_binary oh segment
is a low level, stateful, API returningoc, stop
. Once called no other API can be used on the sameoh
and onlyStdlib.output_*
APIs should be used onoc
.stop ()
must be invoked in order to signal that all data was written tooc
(which should not be used afterwards). Only after callingstop
the other API can be used onoh
.