1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-21 23:00:50 +08:00

cmake: Add flag to list cache entries matching a regex

Add a `-LR[A][H] <regex>` flag with similar functionality to `-L[A][H]`,
but instead of listing all cached variables, it show only specific
variables that match the name regex.
This commit is contained in:
Min Hsu
2024-07-08 11:53:26 -07:00
committed by Brad King
parent d308437d6d
commit c55239e286
9 changed files with 98 additions and 5 deletions

View File

@@ -232,6 +232,17 @@ Options
will display also advanced variables. If ``H`` is specified, it will also will display also advanced variables. If ``H`` is specified, it will also
display help for each variable. display help for each variable.
.. option:: -LR[A][H] <regex>
.. versionadded:: 3.31
Show specific non-advanced cached variables
Show non-``INTERNAL`` nor :prop_cache:`ADVANCED` variables from the CMake
``CACHE`` that match the given regex. If ``A`` is specified, then it
will also show advanced variables. If ``H`` is specified, it will also
display help for each variable.
.. option:: -N .. option:: -N
View mode only. View mode only.

View File

@@ -0,0 +1,5 @@
cmake-list-cached-variables
---------------------------
* The :option:`cmake -LR[A][H]` option was added to list cache entries
whose names match a regular expression.

View File

@@ -43,6 +43,7 @@
#endif #endif
#include "cmsys/Encoding.hxx" #include "cmsys/Encoding.hxx"
#include "cmsys/RegularExpression.hxx"
#include "cmsys/Terminal.h" #include "cmsys/Terminal.h"
namespace { namespace {
@@ -68,12 +69,13 @@ const cmDocumentationEntry cmDocumentationUsageNote = {
"Run 'cmake --help' for more information." "Run 'cmake --help' for more information."
}; };
const cmDocumentationEntry cmDocumentationOptions[32] = { const cmDocumentationEntry cmDocumentationOptions[33] = {
{ "--preset <preset>,--preset=<preset>", "Specify a configure preset." }, { "--preset <preset>,--preset=<preset>", "Specify a configure preset." },
{ "--list-presets[=<type>]", "List available presets." }, { "--list-presets[=<type>]", "List available presets." },
{ "--workflow [<options>]", "Run a workflow preset." }, { "--workflow [<options>]", "Run a workflow preset." },
{ "-E", "CMake command mode." }, { "-E", "CMake command mode." },
{ "-L[A][H]", "List non-advanced cached variables." }, { "-L[A][H]", "List non-advanced cached variables." },
{ "-LR[A][H] <regex>", "Show cached variables that match the regex." },
{ "--fresh", { "--fresh",
"Configure a fresh build tree, removing any existing cache file." }, "Configure a fresh build tree, removing any existing cache file." },
{ "--build <dir>", "Build a CMake-generated project binary tree." }, { "--build <dir>", "Build a CMake-generated project binary tree." },
@@ -192,6 +194,21 @@ void cmakemainProgressCallback(const std::string& m, float prog, cmake* cm)
} }
} }
std::function<bool(std::string const& value)> getShowCachedCallback(
bool& show_flag, bool* help_flag = nullptr, std::string* filter = nullptr)
{
return [=, &show_flag](std::string const& value) -> bool {
show_flag = true;
if (help_flag) {
*help_flag = true;
}
if (filter) {
*filter = value;
}
return true;
};
}
int do_cmake(int ac, char const* const* av) int do_cmake(int ac, char const* const* av)
{ {
if (cmSystemTools::GetCurrentWorkingDirectory().empty()) { if (cmSystemTools::GetCurrentWorkingDirectory().empty()) {
@@ -243,6 +260,8 @@ int do_cmake(int ac, char const* const* av)
bool list_cached = false; bool list_cached = false;
bool list_all_cached = false; bool list_all_cached = false;
bool list_help = false; bool list_help = false;
// (Regex) Filter on the cached variable(s) to print.
std::string filter_var_name;
bool view_only = false; bool view_only = false;
cmake::WorkingMode workingMode = cmake::NORMAL_MODE; cmake::WorkingMode workingMode = cmake::NORMAL_MODE;
std::vector<std::string> parsedArgs; std::vector<std::string> parsedArgs;
@@ -267,13 +286,25 @@ int do_cmake(int ac, char const* const* av)
CommandArgument{ "-N", CommandArgument::Values::Zero, CommandArgument{ "-N", CommandArgument::Values::Zero,
CommandArgument::setToTrue(view_only) }, CommandArgument::setToTrue(view_only) },
CommandArgument{ "-LAH", CommandArgument::Values::Zero, CommandArgument{ "-LAH", CommandArgument::Values::Zero,
CommandArgument::setToTrue(list_all_cached, list_help) }, getShowCachedCallback(list_all_cached, &list_help) },
CommandArgument{ "-LA", CommandArgument::Values::Zero, CommandArgument{ "-LA", CommandArgument::Values::Zero,
CommandArgument::setToTrue(list_all_cached) }, getShowCachedCallback(list_all_cached) },
CommandArgument{ "-LH", CommandArgument::Values::Zero, CommandArgument{ "-LH", CommandArgument::Values::Zero,
CommandArgument::setToTrue(list_cached, list_help) }, getShowCachedCallback(list_cached, &list_help) },
CommandArgument{ "-L", CommandArgument::Values::Zero, CommandArgument{ "-L", CommandArgument::Values::Zero,
CommandArgument::setToTrue(list_cached) }, getShowCachedCallback(list_cached) },
CommandArgument{
"-LRAH", CommandArgument::Values::One,
getShowCachedCallback(list_all_cached, &list_help, &filter_var_name) },
CommandArgument{
"-LRA", CommandArgument::Values::One,
getShowCachedCallback(list_all_cached, nullptr, &filter_var_name) },
CommandArgument{
"-LRH", CommandArgument::Values::One,
getShowCachedCallback(list_cached, &list_help, &filter_var_name) },
CommandArgument{
"-LR", CommandArgument::Values::One,
getShowCachedCallback(list_cached, nullptr, &filter_var_name) },
CommandArgument{ "-P", "No script specified for argument -P", CommandArgument{ "-P", "No script specified for argument -P",
CommandArgument::Values::One, CommandArgument::Values::One,
CommandArgument::RequiresSeparator::No, CommandArgument::RequiresSeparator::No,
@@ -368,7 +399,15 @@ int do_cmake(int ac, char const* const* av)
if (list_cached || list_all_cached) { if (list_cached || list_all_cached) {
std::cout << "-- Cache values" << std::endl; std::cout << "-- Cache values" << std::endl;
std::vector<std::string> keys = cm.GetState()->GetCacheEntryKeys(); std::vector<std::string> keys = cm.GetState()->GetCacheEntryKeys();
cmsys::RegularExpression regex_var_name;
if (!filter_var_name.empty()) {
regex_var_name.compile(filter_var_name);
}
for (std::string const& k : keys) { for (std::string const& k : keys) {
if (regex_var_name.is_valid() && !regex_var_name.find(k)) {
continue;
}
cmStateEnums::CacheEntryType t = cm.GetState()->GetCacheEntryType(k); cmStateEnums::CacheEntryType t = cm.GetState()->GetCacheEntryType(k);
if (t != cmStateEnums::INTERNAL && t != cmStateEnums::STATIC && if (t != cmStateEnums::INTERNAL && t != cmStateEnums::STATIC &&
t != cmStateEnums::UNINITIALIZED) { t != cmStateEnums::UNINITIALIZED) {

View File

@@ -49,6 +49,16 @@ run_cmake_command(E___run_co_compile-no--- ${CMAKE_COMMAND} -E __run_co_compile
run_cmake_command(E___run_co_compile-no-cc ${CMAKE_COMMAND} -E __run_co_compile --iwyu=iwyu-does-not-exist --) run_cmake_command(E___run_co_compile-no-cc ${CMAKE_COMMAND} -E __run_co_compile --iwyu=iwyu-does-not-exist --)
run_cmake_command(E___run_co_compile-tidy-remove-fixes ${CMAKE_COMMAND} -E __run_co_compile "--tidy=${CMAKE_COMMAND}\\;-E\\;true\\;--export-fixes=${RunCMake_BINARY_DIR}/tidy-fixes.yaml" -- ${CMAKE_COMMAND} -E true) run_cmake_command(E___run_co_compile-tidy-remove-fixes ${CMAKE_COMMAND} -E __run_co_compile "--tidy=${CMAKE_COMMAND}\\;-E\\;true\\;--export-fixes=${RunCMake_BINARY_DIR}/tidy-fixes.yaml" -- ${CMAKE_COMMAND} -E true)
block()
set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/list-cache-build)
run_cmake(list-cache)
set(RunCMake_TEST_NO_CLEAN 1)
run_cmake_command(list-cache-LR ${CMAKE_COMMAND} . -LR MIDDLE)
run_cmake_command(list-cache-LRA ${CMAKE_COMMAND} . -LRA MIDDLE)
run_cmake_command(list-cache-LRH ${CMAKE_COMMAND} . -LRH MIDDLE)
run_cmake_command(list-cache-LRAH ${CMAKE_COMMAND} . -LRAH MIDDLE)
endblock()
run_cmake_command(G_no-arg ${CMAKE_COMMAND} -B DummyBuildDir -G) run_cmake_command(G_no-arg ${CMAKE_COMMAND} -B DummyBuildDir -G)
run_cmake_command(G_bad-arg ${CMAKE_COMMAND} -B DummyBuildDir -G NoSuchGenerator) run_cmake_command(G_bad-arg ${CMAKE_COMMAND} -B DummyBuildDir -G NoSuchGenerator)
run_cmake_command(P_no-arg ${CMAKE_COMMAND} -P) run_cmake_command(P_no-arg ${CMAKE_COMMAND} -P)

View File

@@ -0,0 +1,3 @@
-- Cache values
MIDDLE_ENTRY_1:STRING=1
MIDDLE_ENTRY_2:STRING=2$

View File

@@ -0,0 +1,4 @@
-- Cache values
MIDDLE_ENTRY_1:STRING=1
MIDDLE_ENTRY_2:STRING=2
MIDDLE_ENTRY_3:STRING=3$

View File

@@ -0,0 +1,9 @@
-- Cache values
// mid 1
MIDDLE_ENTRY_1:STRING=1
// mid 2
MIDDLE_ENTRY_2:STRING=2
// mid 3
MIDDLE_ENTRY_3:STRING=3$

View File

@@ -0,0 +1,6 @@
-- Cache values
// mid 1
MIDDLE_ENTRY_1:STRING=1
// mid 2
MIDDLE_ENTRY_2:STRING=2$

View File

@@ -0,0 +1,6 @@
set(EARLY_ENTRY_1 "1" CACHE STRING "early")
set(MIDDLE_ENTRY_1 "1" CACHE STRING "mid 1")
set(MIDDLE_ENTRY_2 "2" CACHE STRING "mid 2")
set(MIDDLE_ENTRY_3 "3" CACHE STRING "mid 3")
mark_as_advanced(MIDDLE_ENTRY_3)
set(LATER_ENTRY_1 "1" CACHE STRING "later")