2009-02-09 16:51:03 +00:00
|
|
|
|
# Nixpkgs/NixOS option handling.
|
|
|
|
|
|
|
|
|
|
let lib = import ./default.nix; in
|
|
|
|
|
|
2009-02-28 18:21:25 +00:00
|
|
|
|
with import ./trivial.nix;
|
2009-02-09 16:51:03 +00:00
|
|
|
|
with import ./lists.nix;
|
|
|
|
|
with import ./attrsets.nix;
|
2013-10-28 00:14:16 +00:00
|
|
|
|
with import ./strings.nix;
|
2016-02-20 00:47:01 +00:00
|
|
|
|
with {inherit (import ./types.nix) types; };
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
|
2013-10-23 17:20:39 +01:00
|
|
|
|
isOption = lib.isType "option";
|
2013-10-30 14:33:20 +00:00
|
|
|
|
mkOption =
|
|
|
|
|
{ default ? null # Default value used when no definition is given in the configuration.
|
|
|
|
|
, defaultText ? null # Textual representation of the default, for in the manual.
|
|
|
|
|
, example ? null # Example value used in the manual.
|
|
|
|
|
, description ? null # String describing the option.
|
|
|
|
|
, type ? null # Option type, providing type-checking and value merging.
|
|
|
|
|
, apply ? null # Function that converts the option value to something else.
|
|
|
|
|
, internal ? null # Whether the option is for NixOS developers only.
|
|
|
|
|
, visible ? null # Whether the option shows up in the manual.
|
2015-07-30 12:36:57 +01:00
|
|
|
|
, readOnly ? null # Whether the option can be set only once
|
2013-10-30 14:33:20 +00:00
|
|
|
|
, options ? null # Obsolete, used by types.optionSet.
|
|
|
|
|
} @ attrs:
|
|
|
|
|
attrs // { _type = "option"; };
|
2009-05-27 21:25:17 +01:00
|
|
|
|
|
2013-07-18 20:13:42 +01:00
|
|
|
|
mkEnableOption = name: mkOption {
|
|
|
|
|
default = false;
|
|
|
|
|
example = true;
|
2013-10-17 13:29:51 +01:00
|
|
|
|
description = "Whether to enable ${name}.";
|
2013-07-18 20:13:42 +01:00
|
|
|
|
type = lib.types.bool;
|
|
|
|
|
};
|
|
|
|
|
|
2014-12-21 13:50:46 +00:00
|
|
|
|
# This option accept anything, but it does not produce any result. This
|
|
|
|
|
# is useful for sharing a module across different module sets without
|
|
|
|
|
# having to implement similar features as long as the value of the options
|
|
|
|
|
# are not expected.
|
|
|
|
|
mkSinkUndeclaredOptions = attrs: mkOption ({
|
|
|
|
|
internal = true;
|
|
|
|
|
visible = false;
|
|
|
|
|
default = false;
|
|
|
|
|
description = "Sink for option definitions.";
|
|
|
|
|
type = mkOptionType {
|
|
|
|
|
name = "sink";
|
2016-02-20 00:47:01 +00:00
|
|
|
|
typerep = "(sink)";
|
2014-12-21 13:50:46 +00:00
|
|
|
|
check = x: true;
|
2016-02-20 00:47:01 +00:00
|
|
|
|
merge = config: loc: defs: false;
|
2014-12-21 13:50:46 +00:00
|
|
|
|
};
|
|
|
|
|
apply = x: throw "Option value is not readable because the option is not declared.";
|
|
|
|
|
} // attrs);
|
|
|
|
|
|
2016-02-20 00:47:01 +00:00
|
|
|
|
mergeDefaultOption = config: loc: defs:
|
2013-10-30 13:21:41 +00:00
|
|
|
|
let list = getValues defs; in
|
2012-08-13 19:19:31 +01:00
|
|
|
|
if length list == 1 then head list
|
2016-02-20 00:47:01 +00:00
|
|
|
|
else if all isFunction list then x: mergeDefaultOption config loc (map (f: f x) list)
|
2009-05-19 15:54:41 +01:00
|
|
|
|
else if all isList list then concatLists list
|
2015-07-23 16:19:21 +01:00
|
|
|
|
else if all isAttrs list then foldl' lib.mergeAttrs {} list
|
|
|
|
|
else if all isBool list then foldl' lib.or false list
|
2013-11-12 12:48:19 +00:00
|
|
|
|
else if all isString list then lib.concatStrings list
|
|
|
|
|
else if all isInt list && all (x: x == head list) list then head list
|
2013-10-30 13:21:41 +00:00
|
|
|
|
else throw "Cannot merge definitions of `${showOption loc}' given in ${showFiles (getFiles defs)}.";
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-20 00:47:01 +00:00
|
|
|
|
mergeOneOption = config: loc: defs:
|
2013-10-30 13:21:41 +00:00
|
|
|
|
if defs == [] then abort "This case should never happen."
|
|
|
|
|
else if length defs != 1 then
|
|
|
|
|
throw "The unique option `${showOption loc}' is defined multiple times, in ${showFiles (getFiles defs)}."
|
|
|
|
|
else (head defs).value;
|
|
|
|
|
|
2015-06-15 17:04:27 +01:00
|
|
|
|
/* "Merge" option definitions by checking that they all have the same value. */
|
2016-02-20 00:47:01 +00:00
|
|
|
|
mergeEqualOption = config: loc: defs:
|
2015-06-15 17:04:27 +01:00
|
|
|
|
if defs == [] then abort "This case should never happen."
|
2015-07-23 16:19:21 +01:00
|
|
|
|
else foldl' (val: def:
|
2015-06-15 17:04:27 +01:00
|
|
|
|
if def.value != val then
|
|
|
|
|
throw "The option `${showOption loc}' has conflicting definitions, in ${showFiles (getFiles defs)}."
|
|
|
|
|
else
|
|
|
|
|
val) (head defs).value defs;
|
|
|
|
|
|
2013-10-30 13:21:41 +00:00
|
|
|
|
getValues = map (x: x.value);
|
|
|
|
|
getFiles = map (x: x.file);
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2009-06-11 17:03:38 +01:00
|
|
|
|
# Generate documentation template from the list of option declaration like
|
|
|
|
|
# the set generated with filterOptionSets.
|
2013-10-28 13:25:58 +00:00
|
|
|
|
optionAttrSetToDocList = optionAttrSetToDocList' [];
|
|
|
|
|
|
2016-02-20 00:47:01 +00:00
|
|
|
|
optionAttrSetToDocList' = prefix: internalModuleConfig: options:
|
2015-07-23 15:32:52 +01:00
|
|
|
|
concatMap (opt:
|
2013-10-28 13:25:58 +00:00
|
|
|
|
let
|
2016-02-20 00:47:01 +00:00
|
|
|
|
decls = filter (x: x != unknownModule) opt.declarations;
|
2013-10-28 13:25:58 +00:00
|
|
|
|
docOption = rec {
|
|
|
|
|
name = showOption opt.loc;
|
|
|
|
|
description = opt.description or (throw "Option `${name}' has no description.");
|
2016-02-20 00:47:01 +00:00
|
|
|
|
declarations = decls;
|
2013-10-28 13:25:58 +00:00
|
|
|
|
internal = opt.internal or false;
|
|
|
|
|
visible = opt.visible or true;
|
2015-07-30 12:36:57 +01:00
|
|
|
|
readOnly = opt.readOnly or false;
|
2015-01-04 14:40:59 +00:00
|
|
|
|
type = opt.type.name or null;
|
2013-10-28 13:25:58 +00:00
|
|
|
|
}
|
2016-02-20 00:47:01 +00:00
|
|
|
|
// (if opt ? example then { example = detectDerivation decls opt.example; } else {})
|
|
|
|
|
// (if opt ? default then { default = detectDerivation decls opt.default; } else {})
|
2014-10-05 00:54:34 +01:00
|
|
|
|
// (if opt ? defaultText then { default = opt.defaultText; } else {});
|
2013-10-28 13:25:58 +00:00
|
|
|
|
|
|
|
|
|
subOptions =
|
2016-02-20 00:47:01 +00:00
|
|
|
|
let ss = opt.type.getSubOptionsPrefixed opt.loc;
|
|
|
|
|
in if ss != {} then optionAttrSetToDocList' opt.loc internalModuleConfig (ss internalModuleConfig) else [];
|
2013-10-28 13:25:58 +00:00
|
|
|
|
in
|
2015-07-23 15:32:52 +01:00
|
|
|
|
[ docOption ] ++ subOptions) (collect isOption options);
|
2009-06-11 17:03:38 +01:00
|
|
|
|
|
2016-02-20 00:47:01 +00:00
|
|
|
|
# TODO: Use "extractOptionAttrSet" instead of "optionAttrSetToDocList'" to reduce the code size.
|
|
|
|
|
# It should be a drop-in-replacement. But first, examine the impact on the evaluation time.
|
|
|
|
|
# optionAttrSetToDocList = extractOptionAttrSet true [];
|
|
|
|
|
|
|
|
|
|
# Generate a machine readable specification of the list of option declarations.
|
|
|
|
|
optionAttrSetToParseableSpecifications = extractOptionAttrSet false [];
|
|
|
|
|
|
|
|
|
|
extractOptionAttrSet = toDoc: prefix: internalModuleConfig: options:
|
|
|
|
|
concatMap (opt:
|
|
|
|
|
let
|
|
|
|
|
optionName = showOption opt.loc;
|
|
|
|
|
|
|
|
|
|
# Check if a type contains derivations, that is check if a type nests
|
|
|
|
|
# a 'package', 'packageSet' or 'nixpkgsConfig' type.
|
|
|
|
|
hasDerivation = any (t: elem t opt.type.nestedTypes) ((map (x: x.typerep) (with types; [package packageSet])) ++ ["(nixpkgsConfig)"]);
|
|
|
|
|
|
|
|
|
|
# Check if type is 'path' which can potentially contain a derivation.
|
|
|
|
|
maybeHiddenDerivation = any (t: elem t opt.type.nestedTypes) (map (x: x.typerep) (with types; [path]));
|
|
|
|
|
|
|
|
|
|
isDefaultValue = elem opt.default opt.type.defaultValues;
|
|
|
|
|
|
|
|
|
|
/* Enforce that the example attribute is wrapped with 'literalExample'
|
|
|
|
|
for every type that contains derivations. */
|
|
|
|
|
example =
|
|
|
|
|
if opt ? example
|
|
|
|
|
then (if hasDerivation
|
|
|
|
|
then (if isLiteralExample opt.example
|
|
|
|
|
then { example = detectDerivation decls opt.example; }
|
|
|
|
|
else throw "The attribute ${optionName}.example must be wrapped with 'literalExample' in ${concatStringsSep " and " decls}!")
|
|
|
|
|
else { example = detectDerivation decls opt.example; })
|
|
|
|
|
else {};
|
|
|
|
|
|
|
|
|
|
/* Enforce that the 'defaultText' attribute is defined for every option
|
|
|
|
|
that has a 'default' attribute that contains derivations. */
|
|
|
|
|
default =
|
|
|
|
|
if opt ? default
|
|
|
|
|
then (if hasDerivation
|
|
|
|
|
then (if isDefaultValue
|
|
|
|
|
then { default = opt.default; }
|
|
|
|
|
else (if opt ? defaultText
|
|
|
|
|
then { default = literalExample (detectDerivation decls opt.defaultText); }
|
|
|
|
|
else throw "The option ${optionName} requires a 'defaultText' attribute in ${concatStringsSep " and " decls}!"))
|
|
|
|
|
else (if opt ? defaultText
|
|
|
|
|
then (if maybeHiddenDerivation
|
|
|
|
|
then (if (let eval = builtins.tryEval (findDerivation opt.default); in eval.success && !eval.value)
|
|
|
|
|
then builtins.trace
|
|
|
|
|
"The attribute ${optionName}.defaultText might not be necessary in ${concatStringsSep " and " decls}!"
|
|
|
|
|
{ default = literalExample (detectDerivation decls opt.defaultText); }
|
|
|
|
|
else { default = literalExample (detectDerivation decls opt.defaultText); })
|
|
|
|
|
else builtins.trace
|
|
|
|
|
"The attribute ${optionName}.defaultText is not used and can be removed in ${concatStringsSep " and " decls}!"
|
|
|
|
|
{ default = detectDerivation decls opt.default; })
|
|
|
|
|
else { default = detectDerivation decls opt.default; }))
|
|
|
|
|
else {};
|
|
|
|
|
|
|
|
|
|
decls = filter (x: x != unknownModule) opt.declarations;
|
|
|
|
|
|
|
|
|
|
docOption = {
|
|
|
|
|
name = optionName;
|
|
|
|
|
description = opt.description or (throw "Option `${optionName}' has no description.");
|
|
|
|
|
declarations = decls;
|
|
|
|
|
internal = opt.internal or false;
|
|
|
|
|
visible = opt.visible or true;
|
|
|
|
|
readOnly = opt.readOnly or false;
|
|
|
|
|
} // example // default // subOptions // typeKeys;
|
|
|
|
|
|
|
|
|
|
typeKeys = if toDoc then { type = opt.type.name or null; } else { type = opt.type.typerep; keys = opt.loc; };
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-20 00:47:01 +00:00
|
|
|
|
subOptions =
|
|
|
|
|
if toDoc
|
|
|
|
|
then {}
|
|
|
|
|
else let ss = opt.type.getSubOptions;
|
|
|
|
|
in if ss != {} then { suboptions = (extractOptionAttrSet false [] internalModuleConfig (ss internalModuleConfig)); } else {};
|
|
|
|
|
|
|
|
|
|
subOptionsDoc =
|
|
|
|
|
if toDoc
|
|
|
|
|
then let ss = opt.type.getSubOptionsPrefixed opt.loc;
|
|
|
|
|
in if ss != {} then extractOptionAttrSet true opt.loc internalModuleConfig (ss internalModuleConfig) else []
|
|
|
|
|
else [];
|
|
|
|
|
in
|
|
|
|
|
[ docOption ] ++ subOptionsDoc )
|
|
|
|
|
(filter (opt: (opt.visible or true) && !(opt.internal or false)) (collect isOption options));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This function recursively checks for derivations within an
|
|
|
|
|
an expression, and throws an error if a derivation or a
|
|
|
|
|
store path is found. The function is used to ensure that no
|
|
|
|
|
derivation leaks from the 'default' or 'example' attributes
|
|
|
|
|
of an option.
|
|
|
|
|
This makes the generation of `options.xml' much more efficient:
|
|
|
|
|
the XML representation of derivations is very large (on the
|
|
|
|
|
order of megabytes) and is not actually used by the manual
|
|
|
|
|
generator. */
|
|
|
|
|
detectDerivation = decl: x:
|
2013-10-30 15:19:07 +00:00
|
|
|
|
if isDerivation x then
|
2016-02-20 00:47:01 +00:00
|
|
|
|
throw "Found unexpected derivation in '${x.name}' in '${concatStringsSep " and " decl}'!"
|
|
|
|
|
else if isString x && isStorePath x then
|
|
|
|
|
throw "Found unexpected store path in '${x.name}' in '${concatStringsSep " and " decl}'!"
|
|
|
|
|
else if isList x then map (detectDerivation decl) x
|
|
|
|
|
else if isAttrs x then mapAttrs (n: v: (detectDerivation decl) v) (removeAttrs x ["_args"])
|
2010-05-12 12:07:49 +01:00
|
|
|
|
else x;
|
|
|
|
|
|
2016-02-20 00:47:01 +00:00
|
|
|
|
/* Same as detectDerivation, but returns a boolean instead of
|
|
|
|
|
throwing an exception. */
|
|
|
|
|
findDerivation = x:
|
|
|
|
|
if (isString x && isStorePath x) || isDerivation x then true
|
|
|
|
|
else if isList x then any findDerivation x
|
|
|
|
|
else if isAttrs x then any findDerivation (mapAttrsToList (_: v: v) (removeAttrs x ["_args"]))
|
|
|
|
|
else false;
|
|
|
|
|
|
|
|
|
|
|
2011-09-05 11:14:24 +01:00
|
|
|
|
|
|
|
|
|
/* For use in the ‘example’ option attribute. It causes the given
|
|
|
|
|
text to be included verbatim in documentation. This is necessary
|
|
|
|
|
for example values that are not simple values, e.g.,
|
|
|
|
|
functions. */
|
2016-02-20 00:47:01 +00:00
|
|
|
|
# TODO: A more general name would probably be "literalNix".
|
2011-09-05 11:14:24 +01:00
|
|
|
|
literalExample = text: { _type = "literalExample"; inherit text; };
|
|
|
|
|
|
2016-02-20 00:47:01 +00:00
|
|
|
|
isLiteralExample = x: isAttrs x && hasAttr "_type" x && x._type == "literalExample";
|
|
|
|
|
|
2011-09-05 11:14:24 +01:00
|
|
|
|
|
2013-10-27 23:56:22 +00:00
|
|
|
|
/* Helper functions. */
|
|
|
|
|
showOption = concatStringsSep ".";
|
2013-10-28 18:48:30 +00:00
|
|
|
|
showFiles = files: concatStringsSep " and " (map (f: "`${f}'") files);
|
2013-10-28 13:25:58 +00:00
|
|
|
|
unknownModule = "<unknown-file>";
|
2013-10-27 23:56:22 +00:00
|
|
|
|
|
2009-05-24 11:57:41 +01:00
|
|
|
|
}
|