1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495(*
* Copyright (c)2018-2022 Tarides <contact@tarides.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*)includeIrmin.Export_for_backendsletsrc=Logs.Src.create"irmin-pack.unix"~doc:"irmin-pack unix backend"moduleLog=(valLogs.src_logsrc:Logs.LOG)moduleArray=structincludeArrayletfind_optpa=letn=lengthainletrecloopi=ifi=nthenNoneelseletx=getaiinifpxthenSomexelseloop(succi)inloop0endmoduleList=structincludeListletreciter_resultf=function|[]->Ok()|hd::tl->Result.bind(fhd)(fun()->iter_resultftl)endmoduleInt63=structincludeOptint.Int63lett=Irmin.Type.int63moduleSyntax=structlet(+)=addlet(-)=sublet(*)=mullet(/)=divlet(<)ab=compareab<0let(<=)ab=compareab<=0let(>)ab=compareab>0let(>=)ab=compareab>=0let(=)=equalendendtypeint63=Int63.t[@@derivingirmin]moduleVersion=Irmin_pack.VersionmoduletypeS=Irmin_pack.SmoduleConf=Irmin_pack.ConfmoduleLayout=Irmin_pack.LayoutmoduleIndexable=Irmin_pack.IndexablemoduleResult_syntax=structlet(let+)resf=Result.mapfreslet(let*)=Result.bindlet(>>=)=Result.bindend(** Essentially the Y combinator; useful for anonymous recursive functions. The
k argument is the recursive call. Example:
{[
iter_k (fun ~k n -> if n = 0 then 1 else n * k (n - 1))
]} *)letiter_kf(x:'a)=letreckx=f~kxinkxmoduleVarint=structtypet=int[@@derivingirmin~decode_bin](** LEB128 stores 7 bits per byte. An OCaml [int] has at most 63 bits.
[63 / 7] equals [9]. *)letmax_encoded_size=9end