12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061moduletypeIntf=sigtypet(** The type of the component registry *)(** The type of the component selector. Either all components,
or just the specified components plus all of their dependencies. *)typecomponent_selector=|All_components|Just_named_components_plus_their_dependenciesofstringlistvalget:unit->t(** Get a reference to the global component registry *)valadd_component:?raise_on_error:bool->t->(moduleDkml_install_api.Component_config)->unit(** [add_component ?raise_on_error registry component] adds the component to the registry.
Ordinarily if there is an error a process {!exit} is performed. Set
[raise_on_error] to [true] to raise an {!Invalid_argument} error instead. *)valvalidate:?raise_on_error:bool->t->unit(** [validate ?raise_on_error registry] succeeds if and only if all dependencies of all
[add_component registry] have been themselves added.
Ordinarily if there is an error a process {!exit} is performed. Set
[raise_on_error] to [true] to raise an {!Invalid_argument} error instead. *)valeval:t->selector:component_selector->f:((moduleDkml_install_api.Component_config)->'aDkml_install_api.Forward_progress.t)->fl:Dkml_install_api.Forward_progress.fatal_logger->'alistDkml_install_api.Forward_progress.t(** [eval registry ~f ~fl] iterates through the registry in dependency order,
executing function [f] on each component configuration.
Errors will go to the fatal logger [fl]. *)valreverse_eval:t->selector:component_selector->f:((moduleDkml_install_api.Component_config)->'aDkml_install_api.Forward_progress.t)->fl:Dkml_install_api.Forward_progress.fatal_logger->'alistDkml_install_api.Forward_progress.t(** [reverse_eval registry ~f ~fl] iterates through the registry in reverse
dependency order, executing function [f] on each component configuration.
Errors will go to the fatal logger [fl]. *)(** The module [Private] is meant for internal use only. *)modulePrivate:sigvalreset:unit->unitendend