Memo.LogB00.Memo log.
A B00.Memo log has all the build operations, the hashed file paths and a few global timings.
The type for B00.Memo logs.
val of_memo : B00.Memo.t -> tof_memo m is a log for memo m.
val hash_fun : t -> stringhash_fun is the identifier of the hash function that was used.
val file_hashes : t -> B00_std.Hash.t B00_std.Fpath.Map.tfile_hashes l has all the files that were hashed through the memo.
val hash_dur : t -> B00_std.Time.spanhash_dur l is the time span spent hashing.
val total_dur : t -> B00_std.Time.spantotal_dur l is the time spanning from B00.Memo.create to of_memo.
val cpu_dur : t -> B00_std.Time.cpu_spancpu_dur l is the CPU time spanning from B00.Memo.create to of_memo.
val jobs : t -> intjobs l is the maximal number of concurent spawns given to the build operation executor.
val bincode : t B00_std.Bincode.tbincode is a binary codec for logs.
val write : B00_std.Fpath.t -> t -> (unit, string) resultwrite f l writes log l to file f.
val read : B00_std.Fpath.t -> (t, string) resultread f read a log from file f.
val pp_stats : hashed_size:bool -> Op.query -> t B00_std.Fmt.tpp_stats sel formats statistics stored in the log using query to select operations that are part of the statistics. If hashed_size the sum of the size of the files in file_hashes is computed (this accesses the file system in a non-fatal way in case of errors).
type out_format = [ | `Hashed_files | 
| `Op_hashes | 
| `Ops | 
| `Path | 
| `Stats | 
| `Root_hashed_files | 
| `Trace_event | 
 ]The type for output format.
val out : Format.formatter -> out_format -> Arg.output_details -> Op.query -> path:B00_std.Fpath.t -> t -> unitout formats a log on the given formatter. path is used when `Path is requested.
val out_format_cli : ?docs:string -> unit -> out_format Cmdliner.Term.tout_format_cli ~docs () are mutually exclusive options to specify alternate output formats.