B000.Op
Build operations.
This module provides a type for specifying operations and their result. Operation execution and caching are respectively handled by the Exec
and Reviver
modules.
type failure =
| Exec of string option | (* Execution failure with a potential error msg. *) |
| Missing_writes of B00_std.Fpath.t list | (* Write specification failure. *) |
| Missing_reads of B00_std.Fpath.t list | (* Read synchronisation failure. *) |
The type for operation failures.
type status =
| Aborted | (* Aborted due to prerequisite failure. *) |
| Done | (* Executed successfully. *) |
| Failed of failure | (* Executed unsuccessfully. *) |
| Waiting | (* Waiting for execution. *) |
The type for operation statuses.
The type for build operation marks. Marks have no special semantics they are just used to label operations for UI purposes.
type op = t
Again.
module Copy : sig ... end
File copy.
module Delete : sig ... end
Path deletion.
module Mkdir : sig ... end
Directory creation.
module Notify : sig ... end
End-user notifications.
module Read : sig ... end
File reads.
module Spawn : sig ... end
Tool spawns.
module Wait_files : sig ... end
Waiting on files.
module Write : sig ... end
File writes.
type kind =
| Copy of Copy.t |
| Delete of Delete.t |
| Mkdir of Mkdir.t |
| Notify of Notify.t |
| Read of Read.t |
| Spawn of Spawn.t |
| Wait_files of Wait_files.t |
| Write of Write.t |
The type for operation kinds.
val kind_name : kind -> string
kind_name k
is an end user name for kind k
.
val v : id -> mark:mark -> time_created:B00_std.Time.span -> time_started:B00_std.Time.span -> duration:B00_std.Time.span -> revived:bool ->
status:status -> reads:B00_std.Fpath.t list -> writes:B00_std.Fpath.t list -> writes_manifest_root:B00_std.Fpath.t option -> hash:B00_std.Hash.t ->
?post_exec:(op -> unit) -> ?k:(op -> unit) -> kind -> t
v
constructs an operation. See the corresponding accessors for the semantics of various arguments.
val mark : t -> string
mark o
is the mark of o
.
val time_created : t -> B00_std.Time.span
time_created o
is o
's creation time.
val time_started : t -> B00_std.Time.span
time_started o
is o
's execution start time. This is different from B00_std.Time.Span.max
once the operation has been submitted for execution.
val time_ended : t -> B00_std.Time.span
exec_end_time o
is o
's execution end time. This is different from B00_std.Time.Span.max
once the operation has been completed and collected.
val waited : t -> B00_std.Time.span
waited
is o
's waiting time between creation and execution.
val duration : t -> B00_std.Time.span
duration
is o
's execution duration time.
val revived : t -> bool
revived o
is true
iff o
was revived from a cache. Only relevant if hash
is not Hash
.nil.
val reads : t -> B00_std.Fpath.t list
reads o
are the file paths read by the operation.
val writes : t -> B00_std.Fpath.t list
writes o
are the file paths written by o
.
val writes_manifest_root : t -> B00_std.Fpath.t option
writes_manifest_root o
if Some root
, the operation is cached using a manifest key. This means the writes
made relative to root
are stored along-side the cache key.
val hash : t -> B00_std.Hash.t
hash o
is the operation's hash. This is Hash
.nil before the operation hash has been effectively computed and set via set_hash
. This remains Hash
.nil for operations that are not revivable.
val invoke_k : t -> unit
exec_k o ()
invokes and discards o
's continuation. Note that this does not protect against the continuation raising.
val discard_k : t -> unit
discard o
discards o
's continuation.
val invoke_post_exec : t -> unit
exec_post_exec o
invokes and discards o
's post execution hook. This hook called is right after the operation execution and, if applicable, before reviver recording. It is always called even if the operation fails or is revived (use status
and revived
to check these conditions). Note that if the hook unexpectedly raises this turns o
in to a failure.
val discard_post_exec : t -> unit
discard_post_exec o
discards o
's post execution hook.
val abort : t -> unit
abort o
sets the status of o
to Op.status.Aborted
and discards the operation closures (including kind specific ones).
val set_time_started : t -> B00_std.Time.span -> unit
set_time_started o t
sets o
's execution start time to t
.
val set_time_ended : t -> B00_std.Time.span -> unit
set_time_ended o t
sets o
's execution end time to s
.
val set_revived : t -> bool -> unit
set_revived o b
sets o
's cache revival status to b
.
set_status_from_result o r
sets status of operation o
to Executed
if r
is Ok _
and Failed (Exec e)
if r
is Error e
.
val set_reads : t -> B00_std.Fpath.t list -> unit
set_reads t fs
sets the file paths read by o
to fs
. Note that this resets the hash
.
val set_writes : t -> B00_std.Fpath.t list -> unit
set_writes t fs
sets the file paths written by o
to fs
.
val set_writes_manifest_root : t -> B00_std.Fpath.t option -> unit
set_writes_manifest_root t r
sets the writes manifest root to r
.
val set_hash : t -> B00_std.Hash.t -> unit
set_hash o h
sets the operation hash to h
.
val did_not_write : t -> B00_std.Fpath.t list
did_not_write o
compares writes
with the current state of the file system and reports those files that do not exist.
val cannot_read : t -> B00_std.Fpath.t list
cannot_read o
compares reads
with the current state of the file system and reports those files that cannot be read.
val unready_reads : ready_roots:B00_std.Fpath.Set.t -> t list -> B00_std.Fpath.Set.t
unready_reads os
are the file read by os
that are not written by those and not in ready_roots
.
val read_write_maps : t list -> Set.t B00_std.Fpath.Map.t * Set.t B00_std.Fpath.Map.t
read_write_maps ops
is reads, writes
with reads
mapping file paths to operations that reads them and writes
mapping file paths to operations that write them.
val write_map : t list -> Set.t B00_std.Fpath.Map.t
write_map os
is snd (read_write_maps os)
. If one of the operation sets in the map is not a singleton the operations should likely not be run toghether.
find_read_write_cycle os
is Some cs
if there exists a read/write cycle among the operations os
. This means each each element of cs
writes a file read by its successor in the list with the successor of the last element being the first.
type aggregate_error =
| Failures | (* Some operations failed. *) |
| Cycle of t list | (* Dependency cycle. *) |
| Never_became_ready of B00_std.Fpath.Set.t | (* Some files never became ready. *) |
The type for errors related to a list of operations. This is:
Failures
, if there is one or more operations in the list that Failed
.Cycle ops
, if there is a set of Waiting
operations in the list whose individual reads and writes leads to a dependency cycle. See also find_read_write_cycle
.Never_became_ready fs
, with fs
files that are in the reads of Waiting
operations but are written by no operation from the list and were not made ready.Note that formally more than one of these conditions can be true at the same time. But Never_became_ready
is only reported once the first two kind of errors have been ruled out. The reason is that those files that never became ready may be created by continuations of the failed or cyclic operations and reporting them would not lead the user to focus on the right cause.
val find_aggregate_error : ready_roots:B00_std.Fpath.Set.t -> t list -> (unit, aggregate_error) result
find_aggregate_error ~ready_roots os
finds an aggregate error among the list of operation os
, assuming files ready_roots
were made ready. This is Ok ()
if all operations os
Executed
.