package irmin-pack
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=09996fbcc2c43e117a9bd8e9028c635e81cccb264d5e02d425ab8b06bbacdbdb
sha512=0391a6bf7b94a1edd50a3a8df9e58961739fa78d7d689d61f56bc87144483bad2ee539df595c33d9d52c29b3458da5dddf3a73b5eb85e49c4667c26d2cd46be1
doc/irmin-pack.unix/Irmin_pack_unix/Dispatcher/Make/argument-1-Fm/Suffix/index.html
Module Fm.Suffix
Abstraction for a chunked suffix. It is functionally equivalent to Append_only_file but with a chunked implementation that is parameterized by
start_idxforcreate_rwto know the starting file name, andstart_idxandchunk_numfor the open functions to know the starting file name and how many files there are.
module Io = Iomodule Errs : Io_errors.Smodule Ao : Append_only_file.SAbstraction for irmin-pack's append only files (i.e. suffix and dict).
type create_error = Io.create_errortype open_error = [ | Io.open_error| `Closed| `Invalid_argument| `Inconsistent_store| `Read_out_of_bounds
]type add_new_error = [ | open_error| Io.close_error| `Pending_flush| `File_exists of string| `Multiple_empty_chunks
]val create_rw :
root:string ->
start_idx:int ->
overwrite:bool ->
(t, [> create_error ]) resultval open_rw :
root:string ->
appendable_chunk_poff:Optint.Int63.t ->
start_idx:int ->
chunk_num:int ->
dead_header_size:int ->
(t, [> open_error ]) resultval open_ro :
root:string ->
appendable_chunk_poff:Optint.Int63.t ->
dead_header_size:int ->
start_idx:int ->
chunk_num:int ->
(t, [> open_error ]) resultval add_chunk : t -> (unit, [> add_new_error ]) resultval start_idx : t -> intval chunk_num : t -> intval close : t -> (unit, [> Io.close_error | `Pending_flush ]) resultval empty_buffer : t -> boolval flush : t -> (unit, [> Io.write_error ]) resultval fsync : t -> (unit, [> Io.write_error ]) resultval appendable_chunk_poff : t -> Optint.Int63.tappendable_chunk_poff t is the number of bytes of the chunk file that is currently appendable. It does not perform IO.
RW mode
It also counts the bytes not flushed yet.
RO mode
This information originates from the latest reload of the control file. Calling refresh_appendable_chunk_poff t updates appendable_chunk_poff.
val refresh_appendable_chunk_poff :
t ->
Optint.Int63.t ->
(unit, [> `Rw_not_allowed ]) resultIngest the new end offset of the appendable chunk file. Typically happens in RO mode when the control file has been re-read.
RW mode
Always returns Error `Rw_not_allowed.
val end_soff : t -> Optint.Int63.tend_soff t is the end offset for the chunked suffix. The valid range of offsets is 0 <= off < end_soff. Therefore, end_soff also represents the length of the chunked suffix.
val read_exn : t -> off:Optint.Int63.t -> len:int -> bytes -> unitval read_range_exn :
t ->
off:Optint.Int63.t ->
min_len:int ->
max_len:int ->
bytes ->
intval append_exn : t -> string -> unitval readonly : t -> boolval fold_chunks :
(acc:'a ->
idx:int ->
start_suffix_off:Optint.Int63.t ->
end_suffix_off:Optint.Int63.t ->
is_appendable:bool ->
'a) ->
'a ->
t ->
'a