2009-02-09 16:51:03 +00:00
|
|
|
# Nixpkgs/NixOS option handling.
|
2017-07-29 01:05:35 +01:00
|
|
|
{ lib }:
|
2009-02-09 16:51:03 +00:00
|
|
|
|
2020-10-20 12:47:24 +01:00
|
|
|
let
|
|
|
|
inherit (lib)
|
2020-10-22 12:45:25 +01:00
|
|
|
all
|
|
|
|
collect
|
|
|
|
concatLists
|
|
|
|
concatMap
|
|
|
|
elemAt
|
|
|
|
filter
|
|
|
|
foldl'
|
|
|
|
head
|
|
|
|
isAttrs
|
|
|
|
isBool
|
|
|
|
isDerivation
|
|
|
|
isFunction
|
|
|
|
isInt
|
|
|
|
isList
|
|
|
|
isString
|
|
|
|
length
|
|
|
|
mapAttrs
|
|
|
|
optional
|
|
|
|
optionals
|
|
|
|
take
|
|
|
|
;
|
|
|
|
inherit (lib.attrsets)
|
|
|
|
optionalAttrs
|
|
|
|
;
|
|
|
|
inherit (lib.strings)
|
|
|
|
concatMapStrings
|
|
|
|
concatStringsSep
|
|
|
|
;
|
|
|
|
inherit (lib.types)
|
|
|
|
mkOptionType
|
2020-10-20 12:47:24 +01:00
|
|
|
;
|
|
|
|
in
|
2009-02-09 16:51:03 +00:00
|
|
|
rec {
|
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
/* Returns true when the given argument is an option
|
|
|
|
|
|
|
|
Type: isOption :: a -> bool
|
|
|
|
|
|
|
|
Example:
|
|
|
|
isOption 1 // => false
|
|
|
|
isOption (mkOption {}) // => true
|
|
|
|
*/
|
2013-10-23 17:20:39 +01:00
|
|
|
isOption = lib.isType "option";
|
2017-10-30 17:12:49 +00:00
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
/* Creates an Option attribute set. mkOption accepts an attribute set with the following keys:
|
|
|
|
|
|
|
|
All keys default to `null` when not given.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
mkOption { } // => { _type = "option"; }
|
|
|
|
mkOption { defaultText = "foo"; } // => { _type = "option"; defaultText = "foo"; }
|
|
|
|
*/
|
2013-10-30 14:33:20 +00:00
|
|
|
mkOption =
|
2018-10-28 20:31:35 +00:00
|
|
|
{
|
|
|
|
# Default value used when no definition is given in the configuration.
|
|
|
|
default ? null,
|
|
|
|
# Textual representation of the default, for the manual.
|
|
|
|
defaultText ? null,
|
|
|
|
# Example value used in the manual.
|
|
|
|
example ? null,
|
|
|
|
# String describing the option.
|
|
|
|
description ? null,
|
2019-08-26 01:01:49 +01:00
|
|
|
# Related packages used in the manual (see `genRelatedPackages` in ../nixos/lib/make-options-doc/default.nix).
|
2018-10-28 20:31:35 +00:00
|
|
|
relatedPackages ? null,
|
|
|
|
# Option type, providing type-checking and value merging.
|
|
|
|
type ? null,
|
|
|
|
# Function that converts the option value to something else.
|
|
|
|
apply ? null,
|
|
|
|
# Whether the option is for NixOS developers only.
|
|
|
|
internal ? null,
|
|
|
|
# Whether the option shows up in the manual.
|
|
|
|
visible ? null,
|
|
|
|
# Whether the option can be set only once
|
|
|
|
readOnly ? null,
|
2019-03-07 19:28:09 +00:00
|
|
|
# Deprecated, used by types.optionSet.
|
|
|
|
options ? null
|
2013-10-30 14:33:20 +00:00
|
|
|
} @ attrs:
|
|
|
|
attrs // { _type = "option"; };
|
2009-05-27 21:25:17 +01:00
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
/* Creates an Option attribute set for a boolean value option i.e an
|
|
|
|
option to be toggled on or off:
|
|
|
|
|
|
|
|
Example:
|
|
|
|
mkEnableOption "foo"
|
|
|
|
=> { _type = "option"; default = false; description = "Whether to enable foo."; example = true; type = { ... }; }
|
|
|
|
*/
|
|
|
|
mkEnableOption =
|
|
|
|
# Name for the created option
|
|
|
|
name: mkOption {
|
2013-07-18 20:13:42 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
/* This option accepts 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
|
|
|
|
values of the options are not accessed. */
|
2014-12-21 13:50:46 +00:00
|
|
|
mkSinkUndeclaredOptions = attrs: mkOption ({
|
|
|
|
internal = true;
|
|
|
|
visible = false;
|
|
|
|
default = false;
|
|
|
|
description = "Sink for option definitions.";
|
|
|
|
type = mkOptionType {
|
|
|
|
name = "sink";
|
|
|
|
check = x: true;
|
|
|
|
merge = loc: defs: false;
|
|
|
|
};
|
|
|
|
apply = x: throw "Option value is not readable because the option is not declared.";
|
|
|
|
} // attrs);
|
|
|
|
|
2013-10-30 13:21:41 +00:00
|
|
|
mergeDefaultOption = loc: defs:
|
|
|
|
let list = getValues defs; in
|
2012-08-13 19:19:31 +01:00
|
|
|
if length list == 1 then head list
|
2013-11-12 12:48:19 +00:00
|
|
|
else if all isFunction list then x: mergeDefaultOption 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
|
2020-09-16 19:05:53 +01:00
|
|
|
else throw "Cannot merge definitions of `${showOption loc}'. Definition values:${showDefs defs}";
|
2009-02-09 16:51:03 +00:00
|
|
|
|
2013-10-30 13:21:41 +00:00
|
|
|
mergeOneOption = loc: defs:
|
|
|
|
if defs == [] then abort "This case should never happen."
|
|
|
|
else if length defs != 1 then
|
2020-09-16 19:05:53 +01:00
|
|
|
throw "The unique option `${showOption loc}' is defined multiple times. Definition values:${showDefs defs}"
|
2013-10-30 13:21:41 +00:00
|
|
|
else (head defs).value;
|
|
|
|
|
2015-06-15 17:04:27 +01:00
|
|
|
/* "Merge" option definitions by checking that they all have the same value. */
|
|
|
|
mergeEqualOption = loc: defs:
|
|
|
|
if defs == [] then abort "This case should never happen."
|
2020-09-15 19:30:48 +01:00
|
|
|
# Return early if we only have one element
|
|
|
|
# This also makes it work for functions, because the foldl' below would try
|
|
|
|
# to compare the first element with itself, which is false for functions
|
2020-10-22 12:41:28 +01:00
|
|
|
else if length defs == 1 then (head defs).value
|
2020-09-16 19:05:53 +01:00
|
|
|
else (foldl' (first: def:
|
|
|
|
if def.value != first.value then
|
|
|
|
throw "The option `${showOption loc}' has conflicting definition values:${showDefs [ first def ]}"
|
2015-06-15 17:04:27 +01:00
|
|
|
else
|
2020-09-16 19:05:53 +01:00
|
|
|
first) (head defs) defs).value;
|
2015-06-15 17:04:27 +01:00
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
/* Extracts values of all "value" keys of the given list.
|
|
|
|
|
|
|
|
Type: getValues :: [ { value :: a } ] -> [a]
|
|
|
|
|
|
|
|
Example:
|
|
|
|
getValues [ { value = 1; } { value = 2; } ] // => [ 1 2 ]
|
|
|
|
getValues [ ] // => [ ]
|
|
|
|
*/
|
2013-10-30 13:21:41 +00:00
|
|
|
getValues = map (x: x.value);
|
2017-10-30 17:12:49 +00:00
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
/* Extracts values of all "file" keys of the given list
|
|
|
|
|
|
|
|
Type: getFiles :: [ { file :: a } ] -> [a]
|
|
|
|
|
|
|
|
Example:
|
|
|
|
getFiles [ { file = "file1"; } { file = "file2"; } ] // => [ "file1" "file2" ]
|
|
|
|
getFiles [ ] // => [ ]
|
|
|
|
*/
|
2013-10-30 13:21:41 +00:00
|
|
|
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' [];
|
|
|
|
|
|
|
|
optionAttrSetToDocList' = prefix: options:
|
2015-07-23 15:32:52 +01:00
|
|
|
concatMap (opt:
|
2013-10-28 13:25:58 +00:00
|
|
|
let
|
|
|
|
docOption = rec {
|
2018-02-11 22:04:09 +00:00
|
|
|
loc = opt.loc;
|
2013-10-28 13:25:58 +00:00
|
|
|
name = showOption opt.loc;
|
2019-02-22 00:05:58 +00:00
|
|
|
description = opt.description or (lib.warn "Option `${name}' has no description." "This option has no description.");
|
2013-10-28 13:25:58 +00:00
|
|
|
declarations = filter (x: x != unknownModule) opt.declarations;
|
|
|
|
internal = opt.internal or false;
|
|
|
|
visible = opt.visible or true;
|
2015-07-30 12:36:57 +01:00
|
|
|
readOnly = opt.readOnly or false;
|
2016-09-07 02:03:32 +01:00
|
|
|
type = opt.type.description or null;
|
2013-10-28 13:25:58 +00:00
|
|
|
}
|
2016-04-20 22:57:33 +01:00
|
|
|
// optionalAttrs (opt ? example) { example = scrubOptionValue opt.example; }
|
|
|
|
// optionalAttrs (opt ? default) { default = scrubOptionValue opt.default; }
|
|
|
|
// optionalAttrs (opt ? defaultText) { default = opt.defaultText; }
|
|
|
|
// optionalAttrs (opt ? relatedPackages && opt.relatedPackages != null) { inherit (opt) relatedPackages; };
|
2013-10-28 13:25:58 +00:00
|
|
|
|
|
|
|
subOptions =
|
|
|
|
let ss = opt.type.getSubOptions opt.loc;
|
|
|
|
in if ss != {} then optionAttrSetToDocList' opt.loc ss else [];
|
|
|
|
in
|
2020-12-18 15:42:42 +00:00
|
|
|
[ docOption ] ++ optionals docOption.visible subOptions) (collect isOption options);
|
2009-06-11 17:03:38 +01:00
|
|
|
|
2009-02-09 16:51:03 +00:00
|
|
|
|
2010-05-12 12:07:49 +01:00
|
|
|
/* This function recursively removes all derivation attributes from
|
2018-10-28 20:31:35 +00:00
|
|
|
`x` except for the `name` attribute.
|
|
|
|
|
|
|
|
This is to make 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.
|
|
|
|
*/
|
2013-10-17 13:29:51 +01:00
|
|
|
scrubOptionValue = x:
|
2013-10-30 15:19:07 +00:00
|
|
|
if isDerivation x then
|
|
|
|
{ type = "derivation"; drvPath = x.name; outPath = x.name; name = x.name; }
|
2010-05-12 12:07:49 +01:00
|
|
|
else if isList x then map scrubOptionValue x
|
2010-06-01 15:24:16 +01:00
|
|
|
else if isAttrs x then mapAttrs (n: v: scrubOptionValue v) (removeAttrs x ["_args"])
|
2010-05-12 12:07:49 +01:00
|
|
|
else x;
|
|
|
|
|
2011-09-05 11:14:24 +01:00
|
|
|
|
2018-10-28 20:31:35 +00: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.
|
|
|
|
*/
|
2011-09-05 11:14:24 +01:00
|
|
|
literalExample = text: { _type = "literalExample"; inherit text; };
|
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
# Helper functions.
|
2011-09-05 11:14:24 +01:00
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
/* Convert an option, described as a list of the option parts in to a
|
|
|
|
safe, human readable version.
|
2018-03-05 14:54:21 +00:00
|
|
|
|
2018-10-28 20:31:35 +00:00
|
|
|
Example:
|
|
|
|
(showOption ["foo" "bar" "baz"]) == "foo.bar.baz"
|
2020-04-14 19:34:47 +01:00
|
|
|
(showOption ["foo" "bar.baz" "tux"]) == "foo.bar.baz.tux"
|
2020-04-14 03:49:17 +01:00
|
|
|
|
|
|
|
Placeholders will not be quoted as they are not actual values:
|
|
|
|
(showOption ["foo" "*" "bar"]) == "foo.*.bar"
|
|
|
|
(showOption ["foo" "<name>" "bar"]) == "foo.<name>.bar"
|
|
|
|
|
|
|
|
Unlike attributes, options can also start with numbers:
|
|
|
|
(showOption ["windowManager" "2bwm" "enable"]) == "windowManager.2bwm.enable"
|
2018-10-28 20:31:35 +00:00
|
|
|
*/
|
2020-04-14 19:29:37 +01:00
|
|
|
showOption = parts: let
|
|
|
|
escapeOptionPart = part:
|
|
|
|
let
|
|
|
|
escaped = lib.strings.escapeNixString part;
|
|
|
|
in if escaped == "\"${part}\""
|
|
|
|
then part
|
|
|
|
else escaped;
|
|
|
|
in (concatStringsSep ".") (map escapeOptionPart parts);
|
2013-10-28 18:48:30 +00:00
|
|
|
showFiles = files: concatStringsSep " and " (map (f: "`${f}'") files);
|
2020-09-16 19:05:07 +01:00
|
|
|
|
|
|
|
showDefs = defs: concatMapStrings (def:
|
|
|
|
let
|
|
|
|
# Pretty print the value for display, if successful
|
|
|
|
prettyEval = builtins.tryEval (lib.generators.toPretty {} def.value);
|
|
|
|
# Split it into its lines
|
|
|
|
lines = filter (v: ! isList v) (builtins.split "\n" prettyEval.value);
|
|
|
|
# Only display the first 5 lines, and indent them for better visibility
|
|
|
|
value = concatStringsSep "\n " (take 5 lines ++ optional (length lines > 5) "...");
|
|
|
|
result =
|
|
|
|
# Don't print any value if evaluating the value strictly fails
|
|
|
|
if ! prettyEval.success then ""
|
|
|
|
# Put it on a new line if it consists of multiple
|
|
|
|
else if length lines > 1 then ":\n " + value
|
|
|
|
else ": " + value;
|
|
|
|
in "\n- In `${def.file}'${result}"
|
|
|
|
) defs;
|
|
|
|
|
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
|
|
|
}
|