mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
The TRANSFORM action registry held one live action instance per action for the whole process, and each instance carried per-call state: a raw Selector pointer, REPLACE's helper, APPEND/PREPEND's operands. That was harmless while every action ran to completion uninterrupted, but commitc7af6e94d8(list(TRANSFORM): Add PREDICATE selector, 2026-04-08, v4.4.0-rc1) added a selector that runs a user function once per element, interleaved with the transform. User code reentering list(TRANSFORM) with the same action now rebinds the shared instance mid-flight. That produces silently wrong results, and a use-after-free once any element is transformed after the reentering one. It needs no unusual code to hit: a predicate calling find_package(Python) reaches list(TRANSFORM ... REPLACE) inside FindPython's own module. Make action objects immutable and per-call. Operands and the selector become constructor arguments, Initialize is deleted, and the registry becomes a constexpr table of metadata with a MakeTransformAction factory. The InSelection guard, duplicated in all eight actions, moves into the base class. This also closes a second hole in the same machinery. TransformActionApply overrode only the vector form of Initialize, so transform(APPLY, "f", selector) dispatched to the empty two-argument virtual in the base, left Selector null, and dereferenced it. With no virtual Initialize left to inherit, an APPLY action without a cmMakefile is no longer constructible, so the throwing stub that guarded the vector form is no longer needed. Close a third, from commit651f82642c(Add APPLY action for list(TRANSFORM), 2026-04-08, v4.4.0-rc1): the cmMakefile overload performs APPLY unconditionally but validated only the arity of the action passed to it. APPEND, PREPEND and APPLY all take one argument, so transform(APPEND, "x", makefile) passed validation and then silently ran APPLY, calling "x" as a function instead of appending it. Reject any action but APPLY up front. That path is unreachable from CMake code, since HandleTransformCommand only selects the overload for APPLY, and Tests/CMakeLib has no cmMakefile to drive it with, so it carries no test. Document the predicate's evaluation order while here. It runs once per element, immediately before that element would be transformed. The manual did not state the timing, which matters precisely because a predicate that reenters list(TRANSFORM) observes the outer call mid-flight. Fixes: #28031
497 lines
16 KiB
ReStructuredText
497 lines
16 KiB
ReStructuredText
list
|
|
----
|
|
|
|
Operations on :ref:`semicolon-separated lists <CMake Language Lists>`.
|
|
|
|
Synopsis
|
|
^^^^^^^^
|
|
|
|
.. parsed-literal::
|
|
|
|
`Reading`_
|
|
list(`LENGTH`_ <list> <out-var>)
|
|
list(`GET`_ <list> <element index> [<index> ...] <out-var>)
|
|
list(`JOIN`_ <list> <glue> <out-var>)
|
|
list(`SUBLIST`_ <list> <begin> <length> <out-var>)
|
|
|
|
`Search`_
|
|
list(`FIND`_ <list> <value> <out-var>)
|
|
|
|
`Modification`_
|
|
list(`APPEND`_ <list> [<element>...])
|
|
list(`FILTER`_ <list> <INCLUDE|EXCLUDE> <MODE>)
|
|
list(`INSERT`_ <list> <index> [<element>...])
|
|
list(`POP_BACK`_ <list> [<out-var>...])
|
|
list(`POP_FRONT`_ <list> [<out-var>...])
|
|
list(`PREPEND`_ <list> [<element>...])
|
|
list(`REMOVE_ITEM`_ <list> <value>...)
|
|
list(`REMOVE_AT`_ <list> <index>...)
|
|
list(`REMOVE_DUPLICATES`_ <list>)
|
|
list(`TRANSFORM`_ <list> <ACTION> [...])
|
|
|
|
`Ordering`_
|
|
list(`REVERSE`_ <list>)
|
|
list(`SORT`_ <list> [...])
|
|
|
|
Introduction
|
|
^^^^^^^^^^^^
|
|
|
|
The list subcommands :cref:`APPEND`, :cref:`INSERT`, :cref:`FILTER`,
|
|
:cref:`PREPEND`, :cref:`POP_BACK`, :cref:`POP_FRONT`, :cref:`REMOVE_AT`,
|
|
:cref:`REMOVE_ITEM`, :cref:`REMOVE_DUPLICATES`, :cref:`REVERSE` and
|
|
:cref:`SORT` may create new values for the list within the current CMake
|
|
variable scope. Similar to the :command:`set` command, the ``list`` command
|
|
creates new variable values in the current scope, even if the list itself is
|
|
actually defined in a parent scope. To propagate the results of these
|
|
operations upwards, use :command:`set` with ``PARENT_SCOPE``,
|
|
:command:`set` with ``CACHE INTERNAL``, or some other means of value
|
|
propagation.
|
|
|
|
.. note::
|
|
|
|
A list in cmake is a ``;`` separated group of strings. To create a
|
|
list, the :command:`set` command can be used. For example,
|
|
``set(var a b c d e)`` creates a list with ``a;b;c;d;e``, and
|
|
``set(var "a b c d e")`` creates a string or a list with one item in it.
|
|
(Note that macro arguments are not variables, and therefore cannot be used
|
|
in ``LIST`` commands.)
|
|
|
|
Individual elements may not contain an unequal number of ``[`` and ``]``
|
|
characters, and may not end in a backslash (``\``).
|
|
See :ref:`semicolon-separated lists <CMake Language Lists>` for details.
|
|
|
|
.. note::
|
|
|
|
When specifying index values, if ``<element index>`` is 0 or greater, it
|
|
is indexed from the beginning of the list, with 0 representing the
|
|
first list element. If ``<element index>`` is -1 or lesser, it is indexed
|
|
from the end of the list, with -1 representing the last list element.
|
|
Be careful when counting with negative indices: they do not start from
|
|
0. -0 is equivalent to 0, the first list element.
|
|
|
|
Reading
|
|
^^^^^^^
|
|
|
|
.. signature::
|
|
list(LENGTH <list> <output variable>)
|
|
|
|
Returns the list's length.
|
|
|
|
.. signature::
|
|
list(GET <list> <element index> [<element index> ...] <output variable>)
|
|
|
|
Returns the list of elements specified by indices from the list.
|
|
|
|
.. signature:: list(JOIN <list> <glue> <output variable>)
|
|
|
|
.. versionadded:: 3.12
|
|
|
|
Returns a string joining all list's elements using the glue string.
|
|
To join multiple strings, which are not part of a list,
|
|
use :command:`string(JOIN)`.
|
|
|
|
.. signature::
|
|
list(SUBLIST <list> <begin> <length> <output variable>)
|
|
|
|
.. versionadded:: 3.12
|
|
|
|
Returns a sublist of the given list.
|
|
If ``<length>`` is 0, an empty list will be returned.
|
|
If ``<length>`` is -1 or the list is smaller than ``<begin>+<length>`` then
|
|
the remaining elements of the list starting at ``<begin>`` will be returned.
|
|
|
|
Search
|
|
^^^^^^
|
|
|
|
.. signature::
|
|
list(FIND <list> <value> <output variable>)
|
|
|
|
Returns the index of the element specified in the list
|
|
or ``-1`` if it wasn't found.
|
|
|
|
Modification
|
|
^^^^^^^^^^^^
|
|
|
|
.. signature::
|
|
list(APPEND <list> [<element> ...])
|
|
|
|
Appends elements to the list. If no variable named ``<list>`` exists in the
|
|
current scope its value is treated as empty and the elements are appended to
|
|
that empty list.
|
|
|
|
.. signature::
|
|
list(FILTER <list> <INCLUDE|EXCLUDE> <MODE>)
|
|
|
|
.. versionadded:: 3.6
|
|
|
|
Includes or removes items from the list that match the mode's pattern.
|
|
|
|
``<MODE>`` must be one of the following:
|
|
|
|
``REGEX``
|
|
Items will be matched against the given regular expression.
|
|
|
|
.. code-block:: cmake
|
|
|
|
list(FILTER <list> <INCLUDE|EXCLUDE> REGEX <regular_expression>)
|
|
|
|
For more information on regular expressions look under
|
|
:ref:`string(REGEX) <Regex Specification>`.
|
|
|
|
``PREDICATE``
|
|
Specify a user-defined :command:`function` as a predicate.
|
|
|
|
.. code-block:: cmake
|
|
|
|
list(FILTER <list> <INCLUDE|EXCLUDE> PREDICATE <function>)
|
|
|
|
.. versionadded:: 4.4
|
|
|
|
``<function>`` is a user-defined :command:`function` that acts as a
|
|
unary predicate. The function must accept exactly two parameters: the
|
|
input value and the name of an output variable. The function must set the
|
|
output variable to a boolean value in the calling scope.
|
|
The output variable is interpreted using standard CMake boolean evaluation.
|
|
If the function does not set the output variable, it is an error.
|
|
|
|
Example:
|
|
|
|
.. code-block:: cmake
|
|
|
|
function(file_exists path result)
|
|
if(EXISTS "${path}")
|
|
set(${result} TRUE PARENT_SCOPE)
|
|
else()
|
|
set(${result} FALSE PARENT_SCOPE)
|
|
endif()
|
|
endfunction()
|
|
|
|
set(candidate_files main.c missing.c utils.c)
|
|
list(FILTER candidate_files INCLUDE PREDICATE file_exists)
|
|
|
|
.. signature::
|
|
list(INSERT <list> <element_index> <element> [<element> ...])
|
|
|
|
Inserts elements to the list to the specified index. It is an
|
|
error to specify an out-of-range index. Valid indexes are *0* to *N*
|
|
where *N* is the length of the list, inclusive. An empty list
|
|
has length 0. If no variable named ``<list>`` exists in the
|
|
current scope its value is treated as empty and the elements are
|
|
inserted in that empty list.
|
|
|
|
.. signature::
|
|
list(POP_BACK <list> [<out-var>...])
|
|
|
|
.. versionadded:: 3.15
|
|
|
|
If no variable name is given, removes exactly one element. Otherwise,
|
|
with *N* variable names provided, assign the last *N* elements' values
|
|
to the given variables and then remove the last *N* values from
|
|
``<list>``.
|
|
|
|
.. signature::
|
|
list(POP_FRONT <list> [<out-var>...])
|
|
|
|
.. versionadded:: 3.15
|
|
|
|
If no variable name is given, removes exactly one element. Otherwise,
|
|
with *N* variable names provided, assign the first *N* elements' values
|
|
to the given variables and then remove the first *N* values from
|
|
``<list>``.
|
|
|
|
.. signature::
|
|
list(PREPEND <list> [<element> ...])
|
|
|
|
.. versionadded:: 3.15
|
|
|
|
Insert elements to the 0th position in the list. If no variable named
|
|
``<list>`` exists in the current scope its value is treated as empty and
|
|
the elements are prepended to that empty list.
|
|
|
|
.. signature::
|
|
list(REMOVE_ITEM <list> <value> [<value> ...])
|
|
|
|
Removes all instances of the given items from the list.
|
|
|
|
.. signature::
|
|
list(REMOVE_AT <list> <index> [<index> ...])
|
|
|
|
Removes items at given indices from the list.
|
|
|
|
.. signature::
|
|
list(REMOVE_DUPLICATES <list>)
|
|
|
|
Removes duplicated items in the list. The relative order of items
|
|
is preserved, but if duplicates are encountered,
|
|
only the first instance is preserved.
|
|
|
|
.. signature::
|
|
list(TRANSFORM <list> <ACTION> [<SELECTOR>]
|
|
[OUTPUT_VARIABLE <output variable>])
|
|
|
|
.. versionadded:: 3.12
|
|
|
|
Transforms the list by applying an ``<ACTION>`` to all or, by specifying a
|
|
``<SELECTOR>``, to the selected elements of the list, storing the result
|
|
in-place or in the specified output variable.
|
|
|
|
.. note::
|
|
|
|
The ``TRANSFORM`` sub-command does not change the number of elements in the
|
|
list. If a ``<SELECTOR>`` is specified, only some elements will be changed,
|
|
the other ones will remain the same as before the transformation.
|
|
|
|
``<ACTION>`` specifies the action to apply to the elements of the list.
|
|
``<ACTION>`` must be one of the following:
|
|
|
|
:command:`APPEND <string(APPEND)>`, :command:`PREPEND <string(PREPEND)>`
|
|
Append, prepend specified value to each element of the list.
|
|
|
|
.. signature::
|
|
list(TRANSFORM <list> (APPEND|PREPEND) <value> ...)
|
|
:target: TRANSFORM_APPEND
|
|
|
|
:command:`TOLOWER <string(TOLOWER)>`, :command:`TOUPPER <string(TOUPPER)>`
|
|
Convert each element of the list to lower, upper characters.
|
|
|
|
.. signature::
|
|
list(TRANSFORM <list> (TOLOWER|TOUPPER) ...)
|
|
:target: TRANSFORM_TOLOWER
|
|
|
|
:command:`STRIP <string(STRIP)>`
|
|
Remove leading and trailing spaces from each element of the list.
|
|
|
|
.. signature::
|
|
list(TRANSFORM <list> STRIP ...)
|
|
:target: TRANSFORM_STRIP
|
|
|
|
:command:`GENEX_STRIP <string(GENEX_STRIP)>`
|
|
Strip any
|
|
:manual:`generator expressions <cmake-generator-expressions(7)>`
|
|
from each element of the list.
|
|
|
|
.. signature::
|
|
list(TRANSFORM <list> GENEX_STRIP ...)
|
|
:target: TRANSFORM_GENEX_STRIP
|
|
|
|
:command:`REPLACE <string(REGEX REPLACE)>`
|
|
Match the regular expression as many times as possible and substitute
|
|
the replacement expression for the match for each element of the list
|
|
(same semantic as :command:`string(REGEX REPLACE)`).
|
|
|
|
.. signature::
|
|
list(TRANSFORM <list> REPLACE <regular_expression>
|
|
<replace_expression> ...)
|
|
:target: TRANSFORM_REPLACE
|
|
|
|
.. versionchanged:: 4.1
|
|
The ``^`` anchor now matches only at the beginning of the input
|
|
element instead of the beginning of each repeated search.
|
|
See policy :policy:`CMP0186`.
|
|
|
|
``APPLY``
|
|
Invoke a user-defined :command:`function` for each element of the list.
|
|
The function must accept exactly two parameters: the input value and the
|
|
name of an output variable. The function must set the output variable
|
|
in the calling scope.
|
|
|
|
.. signature::
|
|
list(TRANSFORM <list> APPLY <function> ...)
|
|
:target: TRANSFORM_APPLY
|
|
|
|
.. versionadded:: 4.4
|
|
|
|
``<function>`` is a :command:`function` with exactly two formal parameters.
|
|
Set the output variable via
|
|
:command:`set(\<variable\> \<value\> PARENT_SCOPE) <set>`:
|
|
|
|
.. code-block:: cmake
|
|
|
|
function(<function> <input> <output>)
|
|
# Transform <input>, store result in ${<output>}
|
|
set(${<output>} "<result>" PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
Before each invocation, the output variable is unset in the calling scope
|
|
to prevent stale values.
|
|
|
|
Example:
|
|
|
|
.. code-block:: cmake
|
|
|
|
function(make_absolute in out)
|
|
cmake_path(ABSOLUTE_PATH in BASE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
set(${out} "${in}" PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
set(mylist main.c utils.c io.c)
|
|
list(TRANSFORM mylist APPLY make_absolute)
|
|
# mylist is now absolute paths relative to CMAKE_CURRENT_SOURCE_DIR
|
|
|
|
``<SELECTOR>`` determines which elements of the list will be transformed.
|
|
Only one type of selector can be specified at a time.
|
|
When given, ``<SELECTOR>`` must be one of the following:
|
|
|
|
``AT``
|
|
Specify a list of indexes.
|
|
|
|
.. code-block:: cmake
|
|
|
|
list(TRANSFORM <list> <ACTION> AT <index> [<index> ...] ...)
|
|
|
|
``FOR``
|
|
Specify a range with, optionally,
|
|
an increment used to iterate over the range.
|
|
|
|
.. code-block:: cmake
|
|
|
|
list(TRANSFORM <list> <ACTION> FOR <start> <stop> [<step>] ...)
|
|
|
|
``REGEX``
|
|
Specify a regular expression.
|
|
Only elements matching the regular expression will be transformed.
|
|
|
|
.. code-block:: cmake
|
|
|
|
list(TRANSFORM <list> <ACTION> REGEX <regular_expression> ...)
|
|
|
|
``PREDICATE``
|
|
Specify a user-defined :command:`function` as a predicate.
|
|
Only elements for which the function returns a true value will be
|
|
transformed.
|
|
|
|
.. code-block:: cmake
|
|
|
|
list(TRANSFORM <list> <ACTION> PREDICATE <function> ...)
|
|
|
|
.. versionadded:: 4.4
|
|
|
|
``<function>`` is a user-defined :command:`function` with exactly
|
|
two formal parameters: the input value and the name of an output
|
|
variable. The function must set the output variable to a boolean
|
|
value. Standard CMake boolean evaluation is used.
|
|
If the function does not set the output variable, it is an error.
|
|
The function is evaluated for each element in turn, immediately
|
|
before that element would be transformed.
|
|
|
|
Example:
|
|
|
|
.. code-block:: cmake
|
|
|
|
function(is_relative path result)
|
|
if(NOT IS_ABSOLUTE "${path}")
|
|
set(${result} TRUE PARENT_SCOPE)
|
|
else()
|
|
set(${result} FALSE PARENT_SCOPE)
|
|
endif()
|
|
endfunction()
|
|
|
|
set(search_paths /usr/include src lib /opt/lib)
|
|
list(TRANSFORM search_paths PREPEND "${CMAKE_CURRENT_SOURCE_DIR}/"
|
|
PREDICATE is_relative)
|
|
|
|
|
|
Ordering
|
|
^^^^^^^^
|
|
|
|
.. signature::
|
|
list(REVERSE <list>)
|
|
|
|
Reverses the contents of the list in-place.
|
|
|
|
.. signature::
|
|
list(SORT <list> [COMPARE <compare>] [CASE <case>] [ORDER <order>])
|
|
list(SORT <list> COMPARATOR <function> [CASE <case>] [ORDER <order>])
|
|
|
|
Sorts the list in-place alphabetically.
|
|
|
|
.. versionadded:: 3.13
|
|
Added the ``COMPARE``, ``CASE``, and ``ORDER`` options.
|
|
|
|
.. versionadded:: 3.18
|
|
Added the ``COMPARE NATURAL`` option.
|
|
|
|
Use the ``COMPARE`` keyword to select the comparison method for sorting.
|
|
The ``<compare>`` option should be one of:
|
|
|
|
``STRING``
|
|
Sorts a list of strings alphabetically.
|
|
This is the default behavior if the ``COMPARE`` option is not given.
|
|
|
|
``FILE_BASENAME``
|
|
Sorts a list of pathnames of files by their basenames.
|
|
|
|
``NATURAL``
|
|
Sorts a list of strings using natural order
|
|
(see ``strverscmp(3)`` manual), i.e. such that contiguous digits
|
|
are compared as whole numbers.
|
|
For example: the following list *10.0 1.1 2.1 8.0 2.0 3.1*
|
|
will be sorted as *1.1 2.0 2.1 3.1 8.0 10.0* if the ``NATURAL``
|
|
comparison is selected where it will be sorted as
|
|
*1.1 10.0 2.0 2.1 3.1 8.0* with the ``STRING`` comparison.
|
|
|
|
Use the ``CASE`` keyword to select a case sensitive or case insensitive
|
|
sort mode. The ``<case>`` option should be one of:
|
|
|
|
``SENSITIVE``
|
|
List items are sorted in a case-sensitive manner.
|
|
This is the default behavior if the ``CASE`` option is not given.
|
|
|
|
``INSENSITIVE``
|
|
List items are sorted case insensitively. The order of
|
|
items which differ only by upper/lowercase is not specified.
|
|
|
|
To control the sort order, the ``ORDER`` keyword can be given.
|
|
The ``<order>`` option should be one of:
|
|
|
|
``ASCENDING``
|
|
Sorts the list in ascending order.
|
|
This is the default behavior when the ``ORDER`` option is not given.
|
|
|
|
``DESCENDING``
|
|
Sorts the list in descending order.
|
|
|
|
Instead of the built-in ``COMPARE`` methods, a user-defined comparison
|
|
:command:`function` may be used with the ``COMPARATOR`` keyword.
|
|
|
|
.. versionadded:: 4.4
|
|
|
|
``COMPARATOR`` is mutually exclusive with ``COMPARE``. The ``CASE``
|
|
and ``ORDER`` options may still be used alongside ``COMPARATOR``:
|
|
the ``CASE`` filter is applied to both values before they are passed to
|
|
the function, and ``ORDER DESCENDING`` reverses the comparison by
|
|
swapping the two arguments.
|
|
|
|
The function must accept exactly three parameters: two input values and
|
|
the name of an output variable. It must set the output variable to a
|
|
boolean value (``TRUE`` if the first value should come before the second,
|
|
``FALSE`` otherwise) in the calling scope.
|
|
If the function does not set the output variable, it is an error.
|
|
|
|
The comparator must define a
|
|
`strict weak ordering <https://en.wikipedia.org/wiki/Weak_ordering#Strict_weak_orderings>`_.
|
|
In particular:
|
|
|
|
* It must return ``FALSE`` when comparing an element to itself
|
|
(irreflexivity).
|
|
* If it returns ``TRUE`` for ``(a, b)``, it must return ``FALSE``
|
|
for ``(b, a)`` (asymmetry).
|
|
|
|
An error is raised if the comparator violates these requirements.
|
|
|
|
Example:
|
|
|
|
.. code-block:: cmake
|
|
|
|
function(version_less a b result)
|
|
if("${a}" VERSION_LESS "${b}")
|
|
set(${result} TRUE PARENT_SCOPE)
|
|
else()
|
|
set(${result} FALSE PARENT_SCOPE)
|
|
endif()
|
|
endfunction()
|
|
|
|
set(versions 3.1 1.2 2.0 1.10)
|
|
list(SORT versions COMPARATOR version_less)
|
|
# versions is now: 1.2;1.10;2.0;3.1
|