| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file Copyright.txt or https://cmake.org/licensing for details. */
- #include "cmListCommand.h"
- #include "cmsys/RegularExpression.hxx"
- #include <algorithm>
- #include <cassert>
- #include <cstddef>
- #include <cstdio>
- #include <cstdlib> // required for atoi
- #include <functional>
- #include <iterator>
- #include <set>
- #include <sstream>
- #include <stdexcept>
- #include <utility>
- #include <vector>
- #include "cm_memory.hxx"
- #include "cm_static_string_view.hxx"
- #include "cmAlgorithms.h"
- #include "cmExecutionStatus.h"
- #include "cmGeneratorExpression.h"
- #include "cmMakefile.h"
- #include "cmMessageType.h"
- #include "cmPolicies.h"
- #include "cmRange.h"
- #include "cmStringAlgorithms.h"
- #include "cmStringReplaceHelper.h"
- #include "cmSubcommandTable.h"
- #include "cmSystemTools.h"
- namespace {
- bool FilterRegex(std::vector<std::string> const& args, bool includeMatches,
- std::string const& listName,
- std::vector<std::string>& varArgsExpanded,
- cmExecutionStatus& status);
- bool GetListString(std::string& listString, const std::string& var,
- const cmMakefile& makefile)
- {
- // get the old value
- const char* cacheValue = makefile.GetDefinition(var);
- if (!cacheValue) {
- return false;
- }
- listString = cacheValue;
- return true;
- }
- bool GetList(std::vector<std::string>& list, const std::string& var,
- const cmMakefile& makefile)
- {
- std::string listString;
- if (!GetListString(listString, var, makefile)) {
- return false;
- }
- // if the size of the list
- if (listString.empty()) {
- return true;
- }
- // expand the variable into a list
- cmExpandList(listString, list, true);
- // if no empty elements then just return
- if (!cmContains(list, std::string())) {
- return true;
- }
- // if we have empty elements we need to check policy CMP0007
- switch (makefile.GetPolicyStatus(cmPolicies::CMP0007)) {
- case cmPolicies::WARN: {
- // Default is to warn and use old behavior
- // OLD behavior is to allow compatibility, so recall
- // ExpandListArgument without the true which will remove
- // empty values
- list.clear();
- cmExpandList(listString, list);
- std::string warn =
- cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0007),
- " List has value = [", listString, "].");
- makefile.IssueMessage(MessageType::AUTHOR_WARNING, warn);
- return true;
- }
- case cmPolicies::OLD:
- // OLD behavior is to allow compatibility, so recall
- // ExpandListArgument without the true which will remove
- // empty values
- list.clear();
- cmExpandList(listString, list);
- return true;
- case cmPolicies::NEW:
- return true;
- case cmPolicies::REQUIRED_IF_USED:
- case cmPolicies::REQUIRED_ALWAYS:
- makefile.IssueMessage(
- MessageType::FATAL_ERROR,
- cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0007));
- return false;
- }
- return true;
- }
- bool HandleLengthCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() != 3) {
- status.SetError("sub-command LENGTH requires two arguments.");
- return false;
- }
- const std::string& listName = args[1];
- const std::string& variableName = args.back();
- std::vector<std::string> varArgsExpanded;
- // do not check the return value here
- // if the list var is not found varArgsExpanded will have size 0
- // and we will return 0
- GetList(varArgsExpanded, listName, status.GetMakefile());
- size_t length = varArgsExpanded.size();
- char buffer[1024];
- sprintf(buffer, "%d", static_cast<int>(length));
- status.GetMakefile().AddDefinition(variableName, buffer);
- return true;
- }
- bool HandleGetCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() < 4) {
- status.SetError("sub-command GET requires at least three arguments.");
- return false;
- }
- const std::string& listName = args[1];
- const std::string& variableName = args.back();
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile())) {
- status.GetMakefile().AddDefinition(variableName, "NOTFOUND");
- return true;
- }
- // FIXME: Add policy to make non-existing lists an error like empty lists.
- if (varArgsExpanded.empty()) {
- status.SetError("GET given empty list");
- return false;
- }
- std::string value;
- size_t cc;
- const char* sep = "";
- size_t nitem = varArgsExpanded.size();
- for (cc = 2; cc < args.size() - 1; cc++) {
- int item = atoi(args[cc].c_str());
- value += sep;
- sep = ";";
- if (item < 0) {
- item = static_cast<int>(nitem) + item;
- }
- if (item < 0 || nitem <= static_cast<size_t>(item)) {
- status.SetError(cmStrCat("index: ", item, " out of range (-", nitem,
- ", ", nitem - 1, ")"));
- return false;
- }
- value += varArgsExpanded[item];
- }
- status.GetMakefile().AddDefinition(variableName, value);
- return true;
- }
- bool HandleAppendCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- assert(args.size() >= 2);
- // Skip if nothing to append.
- if (args.size() < 3) {
- return true;
- }
- cmMakefile& makefile = status.GetMakefile();
- std::string const& listName = args[1];
- // expand the variable
- std::string listString;
- GetListString(listString, listName, makefile);
- // If `listString` or `args` is empty, no need to append `;`,
- // then index is going to be `1` and points to the end-of-string ";"
- auto const offset =
- std::string::size_type(listString.empty() || args.empty());
- listString += &";"[offset] + cmJoin(cmMakeRange(args).advance(2), ";");
- makefile.AddDefinition(listName, listString);
- return true;
- }
- bool HandlePrependCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- assert(args.size() >= 2);
- // Skip if nothing to prepend.
- if (args.size() < 3) {
- return true;
- }
- cmMakefile& makefile = status.GetMakefile();
- std::string const& listName = args[1];
- // expand the variable
- std::string listString;
- GetListString(listString, listName, makefile);
- // If `listString` or `args` is empty, no need to append `;`,
- // then `offset` is going to be `1` and points to the end-of-string ";"
- auto const offset =
- std::string::size_type(listString.empty() || args.empty());
- listString.insert(0,
- cmJoin(cmMakeRange(args).advance(2), ";") + &";"[offset]);
- makefile.AddDefinition(listName, listString);
- return true;
- }
- bool HandlePopBackCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- assert(args.size() >= 2);
- cmMakefile& makefile = status.GetMakefile();
- auto ai = args.cbegin();
- ++ai; // Skip subcommand name
- std::string const& listName = *ai++;
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, makefile)) {
- // Can't get the list definition... undefine any vars given after.
- for (; ai != args.cend(); ++ai) {
- makefile.RemoveDefinition(*ai);
- }
- return true;
- }
- if (!varArgsExpanded.empty()) {
- if (ai == args.cend()) {
- // No variables are given... Just remove one element.
- varArgsExpanded.pop_back();
- } else {
- // Ok, assign elements to be removed to the given variables
- for (; !varArgsExpanded.empty() && ai != args.cend(); ++ai) {
- assert(!ai->empty());
- makefile.AddDefinition(*ai, varArgsExpanded.back());
- varArgsExpanded.pop_back();
- }
- // Undefine the rest variables if the list gets empty earlier...
- for (; ai != args.cend(); ++ai) {
- makefile.RemoveDefinition(*ai);
- }
- }
- makefile.AddDefinition(listName, cmJoin(varArgsExpanded, ";"));
- } else if (ai !=
- args.cend()) { // The list is empty, but some args were given
- // Need to *undefine* 'em all, cuz there are no items to assign...
- for (; ai != args.cend(); ++ai) {
- makefile.RemoveDefinition(*ai);
- }
- }
- return true;
- }
- bool HandlePopFrontCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- assert(args.size() >= 2);
- cmMakefile& makefile = status.GetMakefile();
- auto ai = args.cbegin();
- ++ai; // Skip subcommand name
- std::string const& listName = *ai++;
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, makefile)) {
- // Can't get the list definition... undefine any vars given after.
- for (; ai != args.cend(); ++ai) {
- makefile.RemoveDefinition(*ai);
- }
- return true;
- }
- if (!varArgsExpanded.empty()) {
- if (ai == args.cend()) {
- // No variables are given... Just remove one element.
- varArgsExpanded.erase(varArgsExpanded.begin());
- } else {
- // Ok, assign elements to be removed to the given variables
- auto vi = varArgsExpanded.begin();
- for (; vi != varArgsExpanded.end() && ai != args.cend(); ++ai, ++vi) {
- assert(!ai->empty());
- makefile.AddDefinition(*ai, *vi);
- }
- varArgsExpanded.erase(varArgsExpanded.begin(), vi);
- // Undefine the rest variables if the list gets empty earlier...
- for (; ai != args.cend(); ++ai) {
- makefile.RemoveDefinition(*ai);
- }
- }
- makefile.AddDefinition(listName, cmJoin(varArgsExpanded, ";"));
- } else if (ai !=
- args.cend()) { // The list is empty, but some args were given
- // Need to *undefine* 'em all, cuz there are no items to assign...
- for (; ai != args.cend(); ++ai) {
- makefile.RemoveDefinition(*ai);
- }
- }
- return true;
- }
- bool HandleFindCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() != 4) {
- status.SetError("sub-command FIND requires three arguments.");
- return false;
- }
- const std::string& listName = args[1];
- const std::string& variableName = args.back();
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile())) {
- status.GetMakefile().AddDefinition(variableName, "-1");
- return true;
- }
- auto it = std::find(varArgsExpanded.begin(), varArgsExpanded.end(), args[2]);
- if (it != varArgsExpanded.end()) {
- status.GetMakefile().AddDefinition(
- variableName,
- std::to_string(std::distance(varArgsExpanded.begin(), it)));
- return true;
- }
- status.GetMakefile().AddDefinition(variableName, "-1");
- return true;
- }
- bool HandleInsertCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() < 4) {
- status.SetError("sub-command INSERT requires at least three arguments.");
- return false;
- }
- const std::string& listName = args[1];
- // expand the variable
- int item = atoi(args[2].c_str());
- std::vector<std::string> varArgsExpanded;
- if ((!GetList(varArgsExpanded, listName, status.GetMakefile()) ||
- varArgsExpanded.empty()) &&
- item != 0) {
- status.SetError(cmStrCat("index: ", item, " out of range (0, 0)"));
- return false;
- }
- if (!varArgsExpanded.empty()) {
- size_t nitem = varArgsExpanded.size();
- if (item < 0) {
- item = static_cast<int>(nitem) + item;
- }
- if (item < 0 || nitem < static_cast<size_t>(item)) {
- status.SetError(cmStrCat("index: ", item, " out of range (-",
- varArgsExpanded.size(), ", ",
- varArgsExpanded.size(), ")"));
- return false;
- }
- }
- varArgsExpanded.insert(varArgsExpanded.begin() + item, args.begin() + 3,
- args.end());
- std::string value = cmJoin(varArgsExpanded, ";");
- status.GetMakefile().AddDefinition(listName, value);
- return true;
- }
- bool HandleJoinCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() != 4) {
- status.SetError(cmStrCat("sub-command JOIN requires three arguments (",
- args.size() - 1, " found)."));
- return false;
- }
- const std::string& listName = args[1];
- const std::string& glue = args[2];
- const std::string& variableName = args[3];
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile())) {
- status.GetMakefile().AddDefinition(variableName, "");
- return true;
- }
- std::string value =
- cmJoin(cmMakeRange(varArgsExpanded.begin(), varArgsExpanded.end()), glue);
- status.GetMakefile().AddDefinition(variableName, value);
- return true;
- }
- bool HandleRemoveItemCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() < 3) {
- status.SetError("sub-command REMOVE_ITEM requires two or more arguments.");
- return false;
- }
- const std::string& listName = args[1];
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile())) {
- return true;
- }
- std::vector<std::string> remove(args.begin() + 2, args.end());
- std::sort(remove.begin(), remove.end());
- auto remEnd = std::unique(remove.begin(), remove.end());
- auto remBegin = remove.begin();
- auto argsEnd =
- cmRemoveMatching(varArgsExpanded, cmMakeRange(remBegin, remEnd));
- auto argsBegin = varArgsExpanded.cbegin();
- std::string value = cmJoin(cmMakeRange(argsBegin, argsEnd), ";");
- status.GetMakefile().AddDefinition(listName, value);
- return true;
- }
- bool HandleReverseCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- assert(args.size() >= 2);
- if (args.size() > 2) {
- status.SetError("sub-command REVERSE only takes one argument.");
- return false;
- }
- const std::string& listName = args[1];
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile())) {
- return true;
- }
- std::string value = cmJoin(cmReverseRange(varArgsExpanded), ";");
- status.GetMakefile().AddDefinition(listName, value);
- return true;
- }
- bool HandleRemoveDuplicatesCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- assert(args.size() >= 2);
- if (args.size() > 2) {
- status.SetError("sub-command REMOVE_DUPLICATES only takes one argument.");
- return false;
- }
- const std::string& listName = args[1];
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile())) {
- return true;
- }
- auto argsEnd = cmRemoveDuplicates(varArgsExpanded);
- auto argsBegin = varArgsExpanded.cbegin();
- std::string value = cmJoin(cmMakeRange(argsBegin, argsEnd), ";");
- status.GetMakefile().AddDefinition(listName, value);
- return true;
- }
- // Helpers for list(TRANSFORM <list> ...)
- using transform_type = std::function<std::string(const std::string&)>;
- class transform_error : public std::runtime_error
- {
- public:
- transform_error(const std::string& error)
- : std::runtime_error(error)
- {
- }
- };
- class TransformSelector
- {
- public:
- virtual ~TransformSelector() = default;
- std::string Tag;
- virtual bool Validate(std::size_t count = 0) = 0;
- virtual bool InSelection(const std::string&) = 0;
- virtual void Transform(std::vector<std::string>& list,
- const transform_type& transform)
- {
- std::transform(list.begin(), list.end(), list.begin(), transform);
- }
- protected:
- TransformSelector(std::string&& tag)
- : Tag(std::move(tag))
- {
- }
- };
- class TransformNoSelector : public TransformSelector
- {
- public:
- TransformNoSelector()
- : TransformSelector("NO SELECTOR")
- {
- }
- bool Validate(std::size_t) override { return true; }
- bool InSelection(const std::string&) override { return true; }
- };
- class TransformSelectorRegex : public TransformSelector
- {
- public:
- TransformSelectorRegex(const std::string& regex)
- : TransformSelector("REGEX")
- , Regex(regex)
- {
- }
- bool Validate(std::size_t) override { return this->Regex.is_valid(); }
- bool InSelection(const std::string& value) override
- {
- return this->Regex.find(value);
- }
- cmsys::RegularExpression Regex;
- };
- class TransformSelectorIndexes : public TransformSelector
- {
- public:
- std::vector<int> Indexes;
- bool InSelection(const std::string&) override { return true; }
- void Transform(std::vector<std::string>& list,
- const transform_type& transform) override
- {
- this->Validate(list.size());
- for (auto index : this->Indexes) {
- list[index] = transform(list[index]);
- }
- }
- protected:
- TransformSelectorIndexes(std::string&& tag)
- : TransformSelector(std::move(tag))
- {
- }
- TransformSelectorIndexes(std::string&& tag, std::vector<int>&& indexes)
- : TransformSelector(std::move(tag))
- , Indexes(indexes)
- {
- }
- int NormalizeIndex(int index, std::size_t count)
- {
- if (index < 0) {
- index = static_cast<int>(count) + index;
- }
- if (index < 0 || count <= static_cast<std::size_t>(index)) {
- throw transform_error(cmStrCat(
- "sub-command TRANSFORM, selector ", this->Tag, ", index: ", index,
- " out of range (-", count, ", ", count - 1, ")."));
- }
- return index;
- }
- };
- class TransformSelectorAt : public TransformSelectorIndexes
- {
- public:
- TransformSelectorAt(std::vector<int>&& indexes)
- : TransformSelectorIndexes("AT", std::move(indexes))
- {
- }
- bool Validate(std::size_t count) override
- {
- decltype(Indexes) indexes;
- for (auto index : Indexes) {
- indexes.push_back(this->NormalizeIndex(index, count));
- }
- this->Indexes = std::move(indexes);
- return true;
- }
- };
- class TransformSelectorFor : public TransformSelectorIndexes
- {
- public:
- TransformSelectorFor(int start, int stop, int step)
- : TransformSelectorIndexes("FOR")
- , Start(start)
- , Stop(stop)
- , Step(step)
- {
- }
- bool Validate(std::size_t count) override
- {
- this->Start = this->NormalizeIndex(this->Start, count);
- this->Stop = this->NormalizeIndex(this->Stop, count);
- // compute indexes
- auto size = (this->Stop - this->Start + 1) / this->Step;
- if ((this->Stop - this->Start + 1) % this->Step != 0) {
- size += 1;
- }
- this->Indexes.resize(size);
- auto start = this->Start;
- auto step = this->Step;
- std::generate(this->Indexes.begin(), this->Indexes.end(),
- [&start, step]() -> int {
- auto r = start;
- start += step;
- return r;
- });
- return true;
- }
- private:
- int Start, Stop, Step;
- };
- class TransformAction
- {
- public:
- virtual ~TransformAction() = default;
- virtual std::string Transform(const std::string& input) = 0;
- };
- class TransformReplace : public TransformAction
- {
- public:
- TransformReplace(const std::vector<std::string>& arguments,
- cmMakefile* makefile)
- : ReplaceHelper(arguments[0], arguments[1], makefile)
- {
- makefile->ClearMatches();
- if (!this->ReplaceHelper.IsRegularExpressionValid()) {
- throw transform_error(
- cmStrCat("sub-command TRANSFORM, action REPLACE: Failed to compile "
- "regex \"",
- arguments[0], "\"."));
- }
- if (!this->ReplaceHelper.IsReplaceExpressionValid()) {
- throw transform_error(cmStrCat("sub-command TRANSFORM, action REPLACE: ",
- this->ReplaceHelper.GetError(), "."));
- }
- }
- std::string Transform(const std::string& input) override
- {
- // Scan through the input for all matches.
- std::string output;
- if (!this->ReplaceHelper.Replace(input, output)) {
- throw transform_error(cmStrCat("sub-command TRANSFORM, action REPLACE: ",
- this->ReplaceHelper.GetError(), "."));
- }
- return output;
- }
- private:
- cmStringReplaceHelper ReplaceHelper;
- };
- bool HandleTransformCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() < 3) {
- status.SetError(
- "sub-command TRANSFORM requires an action to be specified.");
- return false;
- }
- // Structure collecting all elements of the command
- struct Command
- {
- Command(const std::string& listName)
- : ListName(listName)
- , OutputName(listName)
- {
- }
- std::string Name;
- std::string ListName;
- std::vector<std::string> Arguments;
- std::unique_ptr<TransformAction> Action;
- std::unique_ptr<TransformSelector> Selector;
- std::string OutputName;
- } command(args[1]);
- // Descriptor of action
- // Arity: number of arguments required for the action
- // Transform: lambda function implementing the action
- struct ActionDescriptor
- {
- ActionDescriptor(std::string name)
- : Name(std::move(name))
- {
- }
- ActionDescriptor(std::string name, int arity, transform_type transform)
- : Name(std::move(name))
- , Arity(arity)
- #if defined(__GNUC__) && __GNUC__ == 6 && defined(__aarch64__)
- // std::function move constructor miscompiles on this architecture
- , Transform(transform)
- #else
- , Transform(std::move(transform))
- #endif
- {
- }
- operator const std::string&() const { return Name; }
- std::string Name;
- int Arity = 0;
- transform_type Transform;
- };
- // Build a set of supported actions.
- std::set<ActionDescriptor,
- std::function<bool(const std::string&, const std::string&)>>
- descriptors(
- [](const std::string& x, const std::string& y) { return x < y; });
- descriptors = { { "APPEND", 1,
- [&command](const std::string& s) -> std::string {
- if (command.Selector->InSelection(s)) {
- return s + command.Arguments[0];
- }
- return s;
- } },
- { "PREPEND", 1,
- [&command](const std::string& s) -> std::string {
- if (command.Selector->InSelection(s)) {
- return command.Arguments[0] + s;
- }
- return s;
- } },
- { "TOUPPER", 0,
- [&command](const std::string& s) -> std::string {
- if (command.Selector->InSelection(s)) {
- return cmSystemTools::UpperCase(s);
- }
- return s;
- } },
- { "TOLOWER", 0,
- [&command](const std::string& s) -> std::string {
- if (command.Selector->InSelection(s)) {
- return cmSystemTools::LowerCase(s);
- }
- return s;
- } },
- { "STRIP", 0,
- [&command](const std::string& s) -> std::string {
- if (command.Selector->InSelection(s)) {
- return cmTrimWhitespace(s);
- }
- return s;
- } },
- { "GENEX_STRIP", 0,
- [&command](const std::string& s) -> std::string {
- if (command.Selector->InSelection(s)) {
- return cmGeneratorExpression::Preprocess(
- s,
- cmGeneratorExpression::StripAllGeneratorExpressions);
- }
- return s;
- } },
- { "REPLACE", 2,
- [&command](const std::string& s) -> std::string {
- if (command.Selector->InSelection(s)) {
- return command.Action->Transform(s);
- }
- return s;
- } } };
- using size_type = std::vector<std::string>::size_type;
- size_type index = 2;
- // Parse all possible function parameters
- auto descriptor = descriptors.find(args[index]);
- if (descriptor == descriptors.end()) {
- status.SetError(
- cmStrCat(" sub-command TRANSFORM, ", args[index], " invalid action."));
- return false;
- }
- // Action arguments
- index += 1;
- if (args.size() < index + descriptor->Arity) {
- status.SetError(cmStrCat("sub-command TRANSFORM, action ",
- descriptor->Name, " expects ", descriptor->Arity,
- " argument(s)."));
- return false;
- }
- command.Name = descriptor->Name;
- index += descriptor->Arity;
- if (descriptor->Arity > 0) {
- command.Arguments =
- std::vector<std::string>(args.begin() + 3, args.begin() + index);
- }
- if (command.Name == "REPLACE") {
- try {
- command.Action = cm::make_unique<TransformReplace>(
- command.Arguments, &status.GetMakefile());
- } catch (const transform_error& e) {
- status.SetError(e.what());
- return false;
- }
- }
- const std::string REGEX{ "REGEX" };
- const std::string AT{ "AT" };
- const std::string FOR{ "FOR" };
- const std::string OUTPUT_VARIABLE{ "OUTPUT_VARIABLE" };
- // handle optional arguments
- while (args.size() > index) {
- if ((args[index] == REGEX || args[index] == AT || args[index] == FOR) &&
- command.Selector) {
- status.SetError(
- cmStrCat("sub-command TRANSFORM, selector already specified (",
- command.Selector->Tag, ")."));
- return false;
- }
- // REGEX selector
- if (args[index] == REGEX) {
- if (args.size() == ++index) {
- status.SetError("sub-command TRANSFORM, selector REGEX expects "
- "'regular expression' argument.");
- return false;
- }
- command.Selector = cm::make_unique<TransformSelectorRegex>(args[index]);
- if (!command.Selector->Validate()) {
- status.SetError(
- cmStrCat("sub-command TRANSFORM, selector REGEX failed to compile "
- "regex \"",
- args[index], "\"."));
- return false;
- }
- index += 1;
- continue;
- }
- // AT selector
- if (args[index] == AT) {
- // get all specified indexes
- std::vector<int> indexes;
- while (args.size() > ++index) {
- std::size_t pos;
- int value;
- try {
- value = std::stoi(args[index], &pos);
- if (pos != args[index].length()) {
- // this is not a number, stop processing
- break;
- }
- indexes.push_back(value);
- } catch (const std::invalid_argument&) {
- // this is not a number, stop processing
- break;
- }
- }
- if (indexes.empty()) {
- status.SetError(
- "sub-command TRANSFORM, selector AT expects at least one "
- "numeric value.");
- return false;
- }
- command.Selector =
- cm::make_unique<TransformSelectorAt>(std::move(indexes));
- continue;
- }
- // FOR selector
- if (args[index] == FOR) {
- if (args.size() <= ++index + 1) {
- status.SetError(
- "sub-command TRANSFORM, selector FOR expects, at least,"
- " two arguments.");
- return false;
- }
- int start = 0;
- int stop = 0;
- int step = 1;
- bool valid = true;
- try {
- std::size_t pos;
- start = std::stoi(args[index], &pos);
- if (pos != args[index].length()) {
- // this is not a number
- valid = false;
- } else {
- stop = std::stoi(args[++index], &pos);
- if (pos != args[index].length()) {
- // this is not a number
- valid = false;
- }
- }
- } catch (const std::invalid_argument&) {
- // this is not numbers
- valid = false;
- }
- if (!valid) {
- status.SetError("sub-command TRANSFORM, selector FOR expects, "
- "at least, two numeric values.");
- return false;
- }
- // try to read a third numeric value for step
- if (args.size() > ++index) {
- try {
- std::size_t pos;
- step = std::stoi(args[index], &pos);
- if (pos != args[index].length()) {
- // this is not a number
- step = 1;
- } else {
- index += 1;
- }
- } catch (const std::invalid_argument&) {
- // this is not number, ignore exception
- }
- }
- if (step < 0) {
- status.SetError("sub-command TRANSFORM, selector FOR expects "
- "non negative numeric value for <step>.");
- }
- command.Selector =
- cm::make_unique<TransformSelectorFor>(start, stop, step);
- continue;
- }
- // output variable
- if (args[index] == OUTPUT_VARIABLE) {
- if (args.size() == ++index) {
- status.SetError("sub-command TRANSFORM, OUTPUT_VARIABLE "
- "expects variable name argument.");
- return false;
- }
- command.OutputName = args[index++];
- continue;
- }
- status.SetError(cmStrCat("sub-command TRANSFORM, '",
- cmJoin(cmMakeRange(args).advance(index), " "),
- "': unexpected argument(s)."));
- return false;
- }
- // expand the list variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, command.ListName, status.GetMakefile())) {
- status.GetMakefile().AddDefinition(command.OutputName, "");
- return true;
- }
- if (!command.Selector) {
- // no selector specified, apply transformation to all elements
- command.Selector = cm::make_unique<TransformNoSelector>();
- }
- try {
- command.Selector->Transform(varArgsExpanded, descriptor->Transform);
- } catch (const transform_error& e) {
- status.SetError(e.what());
- return false;
- }
- status.GetMakefile().AddDefinition(command.OutputName,
- cmJoin(varArgsExpanded, ";"));
- return true;
- }
- class cmStringSorter
- {
- public:
- enum class Order
- {
- UNINITIALIZED,
- ASCENDING,
- DESCENDING,
- };
- enum class Compare
- {
- UNINITIALIZED,
- STRING,
- FILE_BASENAME,
- };
- enum class CaseSensitivity
- {
- UNINITIALIZED,
- SENSITIVE,
- INSENSITIVE,
- };
- protected:
- using StringFilter = std::string (*)(const std::string&);
- StringFilter GetCompareFilter(Compare compare)
- {
- return (compare == Compare::FILE_BASENAME) ? cmSystemTools::GetFilenameName
- : nullptr;
- }
- StringFilter GetCaseFilter(CaseSensitivity sensitivity)
- {
- return (sensitivity == CaseSensitivity::INSENSITIVE)
- ? cmSystemTools::LowerCase
- : nullptr;
- }
- public:
- cmStringSorter(Compare compare, CaseSensitivity caseSensitivity,
- Order desc = Order::ASCENDING)
- : filters{ GetCompareFilter(compare), GetCaseFilter(caseSensitivity) }
- , descending(desc == Order::DESCENDING)
- {
- }
- std::string ApplyFilter(const std::string& argument)
- {
- std::string result = argument;
- for (auto filter : filters) {
- if (filter != nullptr) {
- result = filter(result);
- }
- }
- return result;
- }
- bool operator()(const std::string& a, const std::string& b)
- {
- std::string af = ApplyFilter(a);
- std::string bf = ApplyFilter(b);
- bool result;
- if (descending) {
- result = bf < af;
- } else {
- result = af < bf;
- }
- return result;
- }
- protected:
- StringFilter filters[2] = { nullptr, nullptr };
- bool descending;
- };
- bool HandleSortCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- assert(args.size() >= 2);
- if (args.size() > 8) {
- status.SetError("sub-command SORT only takes up to six arguments.");
- return false;
- }
- auto sortCompare = cmStringSorter::Compare::UNINITIALIZED;
- auto sortCaseSensitivity = cmStringSorter::CaseSensitivity::UNINITIALIZED;
- auto sortOrder = cmStringSorter::Order::UNINITIALIZED;
- size_t argumentIndex = 2;
- const std::string messageHint = "sub-command SORT ";
- while (argumentIndex < args.size()) {
- const std::string option = args[argumentIndex++];
- if (option == "COMPARE") {
- if (sortCompare != cmStringSorter::Compare::UNINITIALIZED) {
- std::string error = cmStrCat(messageHint, "option \"", option,
- "\" has been specified multiple times.");
- status.SetError(error);
- return false;
- }
- if (argumentIndex < args.size()) {
- const std::string argument = args[argumentIndex++];
- if (argument == "STRING") {
- sortCompare = cmStringSorter::Compare::STRING;
- } else if (argument == "FILE_BASENAME") {
- sortCompare = cmStringSorter::Compare::FILE_BASENAME;
- } else {
- std::string error =
- cmStrCat(messageHint, "value \"", argument, "\" for option \"",
- option, "\" is invalid.");
- status.SetError(error);
- return false;
- }
- } else {
- status.SetError(cmStrCat(messageHint, "missing argument for option \"",
- option, "\"."));
- return false;
- }
- } else if (option == "CASE") {
- if (sortCaseSensitivity !=
- cmStringSorter::CaseSensitivity::UNINITIALIZED) {
- status.SetError(cmStrCat(messageHint, "option \"", option,
- "\" has been specified multiple times."));
- return false;
- }
- if (argumentIndex < args.size()) {
- const std::string argument = args[argumentIndex++];
- if (argument == "SENSITIVE") {
- sortCaseSensitivity = cmStringSorter::CaseSensitivity::SENSITIVE;
- } else if (argument == "INSENSITIVE") {
- sortCaseSensitivity = cmStringSorter::CaseSensitivity::INSENSITIVE;
- } else {
- status.SetError(cmStrCat(messageHint, "value \"", argument,
- "\" for option \"", option,
- "\" is invalid."));
- return false;
- }
- } else {
- status.SetError(cmStrCat(messageHint, "missing argument for option \"",
- option, "\"."));
- return false;
- }
- } else if (option == "ORDER") {
- if (sortOrder != cmStringSorter::Order::UNINITIALIZED) {
- status.SetError(cmStrCat(messageHint, "option \"", option,
- "\" has been specified multiple times."));
- return false;
- }
- if (argumentIndex < args.size()) {
- const std::string argument = args[argumentIndex++];
- if (argument == "ASCENDING") {
- sortOrder = cmStringSorter::Order::ASCENDING;
- } else if (argument == "DESCENDING") {
- sortOrder = cmStringSorter::Order::DESCENDING;
- } else {
- status.SetError(cmStrCat(messageHint, "value \"", argument,
- "\" for option \"", option,
- "\" is invalid."));
- return false;
- }
- } else {
- status.SetError(cmStrCat(messageHint, "missing argument for option \"",
- option, "\"."));
- return false;
- }
- } else {
- status.SetError(
- cmStrCat(messageHint, "option \"", option, "\" is unknown."));
- return false;
- }
- }
- // set Default Values if Option is not given
- if (sortCompare == cmStringSorter::Compare::UNINITIALIZED) {
- sortCompare = cmStringSorter::Compare::STRING;
- }
- if (sortCaseSensitivity == cmStringSorter::CaseSensitivity::UNINITIALIZED) {
- sortCaseSensitivity = cmStringSorter::CaseSensitivity::SENSITIVE;
- }
- if (sortOrder == cmStringSorter::Order::UNINITIALIZED) {
- sortOrder = cmStringSorter::Order::ASCENDING;
- }
- const std::string& listName = args[1];
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile())) {
- return true;
- }
- if ((sortCompare == cmStringSorter::Compare::STRING) &&
- (sortCaseSensitivity == cmStringSorter::CaseSensitivity::SENSITIVE) &&
- (sortOrder == cmStringSorter::Order::ASCENDING)) {
- std::sort(varArgsExpanded.begin(), varArgsExpanded.end());
- } else {
- cmStringSorter sorter(sortCompare, sortCaseSensitivity, sortOrder);
- std::sort(varArgsExpanded.begin(), varArgsExpanded.end(), sorter);
- }
- std::string value = cmJoin(varArgsExpanded, ";");
- status.GetMakefile().AddDefinition(listName, value);
- return true;
- }
- bool HandleSublistCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() != 5) {
- status.SetError(cmStrCat("sub-command SUBLIST requires four arguments (",
- args.size() - 1, " found)."));
- return false;
- }
- const std::string& listName = args[1];
- const std::string& variableName = args.back();
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile()) ||
- varArgsExpanded.empty()) {
- status.GetMakefile().AddDefinition(variableName, "");
- return true;
- }
- const int start = atoi(args[2].c_str());
- const int length = atoi(args[3].c_str());
- using size_type = decltype(varArgsExpanded)::size_type;
- if (start < 0 || size_type(start) >= varArgsExpanded.size()) {
- status.SetError(cmStrCat("begin index: ", start, " is out of range 0 - ",
- varArgsExpanded.size() - 1));
- return false;
- }
- if (length < -1) {
- status.SetError(cmStrCat("length: ", length, " should be -1 or greater"));
- return false;
- }
- const size_type end =
- (length == -1 || size_type(start + length) > varArgsExpanded.size())
- ? varArgsExpanded.size()
- : size_type(start + length);
- std::vector<std::string> sublist(varArgsExpanded.begin() + start,
- varArgsExpanded.begin() + end);
- status.GetMakefile().AddDefinition(variableName, cmJoin(sublist, ";"));
- return true;
- }
- bool HandleRemoveAtCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() < 3) {
- status.SetError("sub-command REMOVE_AT requires at least "
- "two arguments.");
- return false;
- }
- const std::string& listName = args[1];
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile()) ||
- varArgsExpanded.empty()) {
- std::ostringstream str;
- str << "index: ";
- for (size_t i = 1; i < args.size(); ++i) {
- str << args[i];
- if (i != args.size() - 1) {
- str << ", ";
- }
- }
- str << " out of range (0, 0)";
- status.SetError(str.str());
- return false;
- }
- size_t cc;
- std::vector<size_t> removed;
- size_t nitem = varArgsExpanded.size();
- for (cc = 2; cc < args.size(); ++cc) {
- int item = atoi(args[cc].c_str());
- if (item < 0) {
- item = static_cast<int>(nitem) + item;
- }
- if (item < 0 || nitem <= static_cast<size_t>(item)) {
- status.SetError(cmStrCat("index: ", item, " out of range (-", nitem,
- ", ", nitem - 1, ")"));
- return false;
- }
- removed.push_back(static_cast<size_t>(item));
- }
- std::sort(removed.begin(), removed.end());
- auto remEnd = std::unique(removed.begin(), removed.end());
- auto remBegin = removed.begin();
- auto argsEnd =
- cmRemoveIndices(varArgsExpanded, cmMakeRange(remBegin, remEnd));
- auto argsBegin = varArgsExpanded.cbegin();
- std::string value = cmJoin(cmMakeRange(argsBegin, argsEnd), ";");
- status.GetMakefile().AddDefinition(listName, value);
- return true;
- }
- bool HandleFilterCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() < 2) {
- status.SetError("sub-command FILTER requires a list to be specified.");
- return false;
- }
- if (args.size() < 3) {
- status.SetError(
- "sub-command FILTER requires an operator to be specified.");
- return false;
- }
- if (args.size() < 4) {
- status.SetError("sub-command FILTER requires a mode to be specified.");
- return false;
- }
- const std::string& op = args[2];
- bool includeMatches;
- if (op == "INCLUDE") {
- includeMatches = true;
- } else if (op == "EXCLUDE") {
- includeMatches = false;
- } else {
- status.SetError("sub-command FILTER does not recognize operator " + op);
- return false;
- }
- const std::string& listName = args[1];
- // expand the variable
- std::vector<std::string> varArgsExpanded;
- if (!GetList(varArgsExpanded, listName, status.GetMakefile())) {
- return true;
- }
- const std::string& mode = args[3];
- if (mode == "REGEX") {
- if (args.size() != 5) {
- status.SetError("sub-command FILTER, mode REGEX "
- "requires five arguments.");
- return false;
- }
- return FilterRegex(args, includeMatches, listName, varArgsExpanded,
- status);
- }
- status.SetError("sub-command FILTER does not recognize mode " + mode);
- return false;
- }
- class MatchesRegex
- {
- public:
- MatchesRegex(cmsys::RegularExpression& in_regex, bool in_includeMatches)
- : regex(in_regex)
- , includeMatches(in_includeMatches)
- {
- }
- bool operator()(const std::string& target)
- {
- return regex.find(target) ^ includeMatches;
- }
- private:
- cmsys::RegularExpression& regex;
- const bool includeMatches;
- };
- bool FilterRegex(std::vector<std::string> const& args, bool includeMatches,
- std::string const& listName,
- std::vector<std::string>& varArgsExpanded,
- cmExecutionStatus& status)
- {
- const std::string& pattern = args[4];
- cmsys::RegularExpression regex(pattern);
- if (!regex.is_valid()) {
- std::string error =
- cmStrCat("sub-command FILTER, mode REGEX failed to compile regex \"",
- pattern, "\".");
- status.SetError(error);
- return false;
- }
- auto argsBegin = varArgsExpanded.begin();
- auto argsEnd = varArgsExpanded.end();
- auto newArgsEnd =
- std::remove_if(argsBegin, argsEnd, MatchesRegex(regex, includeMatches));
- std::string value = cmJoin(cmMakeRange(argsBegin, newArgsEnd), ";");
- status.GetMakefile().AddDefinition(listName, value);
- return true;
- }
- } // namespace
- bool cmListCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- if (args.size() < 2) {
- status.SetError("must be called with at least two arguments.");
- return false;
- }
- static cmSubcommandTable const subcommand{
- { "LENGTH"_s, HandleLengthCommand },
- { "GET"_s, HandleGetCommand },
- { "APPEND"_s, HandleAppendCommand },
- { "PREPEND"_s, HandlePrependCommand },
- { "POP_BACK"_s, HandlePopBackCommand },
- { "POP_FRONT"_s, HandlePopFrontCommand },
- { "FIND"_s, HandleFindCommand },
- { "INSERT"_s, HandleInsertCommand },
- { "JOIN"_s, HandleJoinCommand },
- { "REMOVE_AT"_s, HandleRemoveAtCommand },
- { "REMOVE_ITEM"_s, HandleRemoveItemCommand },
- { "REMOVE_DUPLICATES"_s, HandleRemoveDuplicatesCommand },
- { "TRANSFORM"_s, HandleTransformCommand },
- { "SORT"_s, HandleSortCommand },
- { "SUBLIST"_s, HandleSublistCommand },
- { "REVERSE"_s, HandleReverseCommand },
- { "FILTER"_s, HandleFilterCommand },
- };
- return subcommand(args[0], args, status);
- }
|