From f46b2e914256322fc8d33b425ec01e9d9c1496ba Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 6 Jul 2022 11:45:57 -0400 Subject: cmArgumentParser: Model maybe-missing string with wrapper type Bindings to `std::string` require one value. Some clients have been filtering `keywordsMissingValue` to support keywords that tolerate a missing value. Offer them a type-safe way to achieve this instead. --- Source/cmFileCommand.cxx | 38 ++++++++++++++------------------------ 1 file changed, 14 insertions(+), 24 deletions(-) (limited to 'Source/cmFileCommand.cxx') diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 22ab5f74c8..d2aa63cfaa 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -28,7 +28,6 @@ #include "cm_sys_stat.h" -#include "cmAlgorithms.h" #include "cmArgumentParser.h" #include "cmArgumentParserTypes.h" #include "cmCMakePath.h" @@ -3211,7 +3210,8 @@ bool HandleConfigureCommand(std::vector const& args, cm::optional Content; bool EscapeQuotes = false; bool AtOnly = false; - std::string NewlineStyle; + // "NEWLINE_STYLE" requires one value, but we use a custom check below. + ArgumentParser::Maybe NewlineStyle; }; static auto const parser = @@ -3236,15 +3236,10 @@ bool HandleConfigureCommand(std::vector const& args, return false; } - // Arguments that are allowed to be empty lists. Keep entries sorted! - static const std::vector LIST_ARGS = { - "NEWLINE_STYLE"_s, // Filter here so we can issue a custom error below. - }; - auto kwbegin = keywordsMissingValues.cbegin(); - auto kwend = cmRemoveMatching(keywordsMissingValues, LIST_ARGS); - if (kwend != kwbegin) { - status.SetError(cmStrCat("CONFIGURE keywords missing values:\n ", - cmJoin(cmMakeRange(kwbegin, kwend), "\n "))); + if (!keywordsMissingValues.empty()) { + status.SetError( + cmStrCat("CONFIGURE keywords missing values:\n ", + cmJoin(cmMakeRange(keywordsMissingValues), "\n "))); cmSystemTools::SetFatalErrorOccurred(); return false; } @@ -3347,7 +3342,10 @@ bool HandleArchiveCreateCommand(std::vector const& args, std::string Format; std::string Compression; std::string CompressionLevel; - std::string MTime; + // "MTIME" should require one value, but it has long been accidentally + // accepted without one and treated as if an empty value were given. + // Fixing this would require a policy. + ArgumentParser::Maybe MTime; bool Verbose = false; // "PATHS" requires at least one value, but use a custom check below. ArgumentParser::MaybeEmpty> Paths; @@ -3375,18 +3373,10 @@ bool HandleArchiveCreateCommand(std::vector const& args, return false; } - // Arguments that are allowed to be empty lists. Keep entries sorted! - static const std::vector LIST_ARGS = { - "MTIME"_s, // "MTIME" should not be in this list because it requires one - // value, but it has long been accidentally accepted without - // one and treated as if an empty value were given. - // Fixing this would require a policy. - }; - auto kwbegin = keywordsMissingValues.cbegin(); - auto kwend = cmRemoveMatching(keywordsMissingValues, LIST_ARGS); - if (kwend != kwbegin) { - status.SetError(cmStrCat("Keywords missing values:\n ", - cmJoin(cmMakeRange(kwbegin, kwend), "\n "))); + if (!keywordsMissingValues.empty()) { + status.SetError( + cmStrCat("Keywords missing values:\n ", + cmJoin(cmMakeRange(keywordsMissingValues), "\n "))); cmSystemTools::SetFatalErrorOccurred(); return false; } -- cgit v1.2.1