package opam-state
Install
Dune Dependency
Authors
-
David Allsopp
-
VVincent Bernardoff <vb@luminar.eu.org>
-
RRaja Boujbel <raja.boujbel@ocamlpro.com>
-
KKate Deplaix <kit-ty-kate@outlook.com>
-
RRoberto Di Cosmo <roberto@dicosmo.org>
-
TThomas Gazagnaire <thomas@gazagnaire.org>
-
LLouis Gesbert <louis.gesbert@ocamlpro.com>
-
FFabrice Le Fessant <Fabrice.Le_fessant@inria.fr>
-
AAnil Madhavapeddy <anil@recoil.org>
-
GGuillem Rieu <guillem.rieu@ocamlpro.com>
-
RRalf Treinen <ralf.treinen@pps.jussieu.fr>
-
FFrederic Tuong <tuong@users.gforge.inria.fr>
Maintainers
Sources
md5=e9a76b200b58d303507317e8d28f2a6d
sha512=410c662d6dbd289433c61ff36a8591c3df2f2dc1d0fd48bf69fbec9cf57ebc33fbe05e02096e26c91f7ff1485c00d77e7fddcd63e4c1f2293136312f5ddfbe05
doc/opam-state/OpamStateTypes/index.html
Module OpamStateTypes
Defines the types holding global, repository and switch states
Client state
Phantom types to indicate the locking state of a state, and allow or not on-disk operations.
Note that each state load is itself locking enough to return a consistent state: a read lock is only needed when the consistency of the actions depend on the fact that the given state doesn't change during the run (e.g. an update that depends on it). In particular, all query commands don't need a read lock.
Subtyping is by guarantees given on the operations allowed, rw
giving the most and being the smallest type, so that it is safe to coerce (rw t :> ro t)
.
Phantom type for readwrite-locked state (ensures that there are no concurrent reads or writes)
Type for read-locked state (ensures that there are no concurrent writes)
Type for unlocked state (single file reads should still be ok)
type +'a lock = [< unlocked Lock_write ] as 'a
The super-type for all lock types
type gt_variables =
(OpamTypes.variable_contents option Lazy.t * string) OpamVariable.Map.t
Type of global state global variables
type +'lock global_state = {
global_lock : OpamSystem.lock;
root : OpamPath.t;
(*The global opam root path (caution: this is stored here but some code may rely on OpamStateConfig.root_dir ; in other words, multiple root handling isn't really supported at the moment)
*)config : OpamFile.Config.t;
(*The main configuration file. A note of caution: this corresponds to the configuration as loaded from the file: to get the current options, which may be overridden through the command-line or environment, see OpamStateConfig
*)global_variables : gt_variables;
(*A map of variables that have been defined globally, e.g. through `.opam/config`. They may need evaluation so are stored as lazy values. The extra string is the supplied variable documentation
*)global_state_to_upgrade : gt_changes;
(*If the global config was upgraded on-the-fly, indicates if the either the repo or switch config require the global config to be written (i.e. a hard upgrade to the global config)
*)
} constraint 'lock = 'lock lock
Global state corresponding to an opam root and its configuration
type +'lock repos_state = {
repos_lock : OpamSystem.lock;
repos_global : unlocked global_state;
repositories : OpamTypes.repository OpamTypes.repository_name_map;
(*The list of repositories
*)repos_definitions : OpamFile.Repo.t OpamTypes.repository_name_map;
(*The contents of each repo's
*)repo
filerepo_opams : OpamFile.OPAM.t OpamTypes.package_map OpamTypes.repository_name_map;
(*All opam files that can be found in the configured repositories
*)repos_tmp : (OpamRepositoryName.t, OpamFilename.Dir.t Lazy.t) Hashtbl.t;
(*Temporary directories containing the uncompressed contents of the repositories
*)
} constraint 'lock = 'lock lock
State corresponding to the repo/ subdir: all available packages and metadata, for each repository.
type +'lock switch_state = {
switch_lock : OpamSystem.lock;
switch_global : unlocked global_state;
switch_repos : unlocked repos_state;
switch : OpamTypes.switch;
(*The current active switch
*)switch_invariant : OpamTypes.formula;
(*Defines the "base" of the switch, e.g. what compiler is desired
*)compiler_packages : OpamTypes.package_set;
(*The packages that form the base of the current compiler. Normally equal to the subset of installed packages matching the invariant defined in switch_config
*)switch_config : OpamFile.Switch_config.t;
(*The configuration file for this switch
*)repos_package_index : OpamFile.OPAM.t OpamTypes.package_map;
(*Metadata of all packages that could be found in the configured repositories (ignoring installed or pinned packages)
*)opams : OpamFile.OPAM.t OpamTypes.package_map;
(*The metadata of all packages, gathered from repo, local cache and pinning overlays. This includes URL and descr data (even if they were originally in separate files), as well as the original metadata directory (that can be used to retrieve the files/ subdir)
*)conf_files : OpamFile.Dot_config.t OpamTypes.name_map;
(*The opam-config of installed packages (from ".opam-switch/config/pkgname.config")
*)packages : OpamTypes.package_set;
(*The set of all known packages
*)sys_packages : OpamTypes.sys_pkg_status OpamTypes.package_map Lazy.t;
(*Map of package and their system dependencies packages status. Only initialised for otherwise available packages
*)available_packages : OpamTypes.package_set Lazy.t;
(*The set of available packages, filtered by their
*)available:
fieldpinned : OpamTypes.package_set;
(*The set of pinned packages (their metadata, including pinning target, is in
*)opams
)installed : OpamTypes.package_set;
(*The set of all installed packages
*)installed_opams : OpamFile.OPAM.t OpamTypes.package_map;
(*The cached metadata of installed packages (may differ from the metadata that is in
*)opams
for updated packages)installed_roots : OpamTypes.package_set;
(*The set of packages explicitly installed by the user. Some of them may happen not to be installed at some point, but this indicates that the user would like them installed.
*)reinstall : OpamTypes.package_set Lazy.t;
(*The set of packages which need to be reinstalled
*)invalidated : OpamTypes.package_set Lazy.t;
(*The set of packages which are installed but no longer valid, e.g. because of removed system dependencies. Only packages which are unavailable end up in this set, they are otherwise put in
*)reinstall
.
} constraint 'lock = 'lock lock
State of a given switch: options, available and installed packages, etc.
Pinned opam files informations
type 'url _topin_opamfile = {
pin_file : OpamFile.OPAM.t OpamFile.t;
pin_locked : string option;
pin_subpath : OpamTypes.subpath option;
pin_url : 'url;
}
type name_and_file = (OpamTypes.name, unit) _topin_name_and_opamfile
type name_and_file_w_url =
(OpamTypes.name, OpamTypes.url) _topin_name_and_opamfile
type nameopt_and_file = (OpamTypes.name option, unit) _topin_name_and_opamfile
type nameopt_and_file_w_url =
(OpamTypes.name option, OpamTypes.url) _topin_name_and_opamfile
type pinned_opam = {
pinned_name : OpamTypes.name;
pinned_version : OpamTypes.version option;
pinned_opam : OpamFile.OPAM.t option;
pinned_subpath : OpamTypes.subpath option;
pinned_url : OpamTypes.url;
}