diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-03 08:10:31 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-04 20:32:18 (GMT) |
commit | cb765af0499d1ad51b7e4d3ff45f1e40d6ca843b (patch) | |
tree | ce5afb5fae9c29dccc83009dc971b578416fbee1 /Source | |
parent | 5df267fa1dc5f8389f571eb6841e51b8fe333b2c (diff) | |
download | CMake-cb765af0499d1ad51b7e4d3ff45f1e40d6ca843b.zip CMake-cb765af0499d1ad51b7e4d3ff45f1e40d6ca843b.tar.gz CMake-cb765af0499d1ad51b7e4d3ff45f1e40d6ca843b.tar.bz2 |
cmPolicies: Implement short description access with XMacros.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmPolicies.cxx | 38 |
1 files changed, 23 insertions, 15 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx index 5e58f23..c1a2d2f 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -49,6 +49,10 @@ static bool stringToId(const char* input, cmPolicies::PolicyID& pid) #define CM_FOR_EACH_POLICY_ID_VERSION(POLICY) \ CM_FOR_EACH_POLICY_TABLE(POLICY, CM_SELECT_ID_VERSION) +#define CM_SELECT_ID_DOC(F, A1, A2, A3, A4, A5, A6) F(A1, A2) +#define CM_FOR_EACH_POLICY_ID_DOC(POLICY) \ + CM_FOR_EACH_POLICY_TABLE(POLICY, CM_SELECT_ID_DOC) + static const char* idToString(cmPolicies::PolicyID id) { switch(id) @@ -102,20 +106,32 @@ static bool isPolicyNewerThan(cmPolicies::PolicyID id, return false; } +const char* idToShortDescription(cmPolicies::PolicyID id) +{ + switch(id) + { +#define POLICY_CASE(ID, SHORT_DESCRIPTION) \ + case cmPolicies::ID: \ + return SHORT_DESCRIPTION; + CM_FOR_EACH_POLICY_ID_DOC(POLICY_CASE) +#undef POLICY_CASE + case cmPolicies::CMPCOUNT: + return 0; + } + return 0; +} + class cmPolicy { public: cmPolicy(cmPolicies::PolicyID iD, - const char *shortDescription, cmPolicies::PolicyStatus status) { this->ID = iD; - this->ShortDescription = shortDescription; this->Status = status; } cmPolicies::PolicyID ID; - std::string ShortDescription; cmPolicies::PolicyStatus Status; }; @@ -440,14 +456,13 @@ cmPolicies::~cmPolicies() void cmPolicies::DefinePolicy(cmPolicies::PolicyID iD, const char *, - const char *shortDescription, + const char *, unsigned int, unsigned int, unsigned int, cmPolicies::PolicyStatus status) { this->Policies[iD] = new cmPolicy(iD, - shortDescription, status); } @@ -591,13 +606,10 @@ bool cmPolicies::GetPolicyID(const char *id, cmPolicies::PolicyID &pid) ///! return a warning string for a given policy std::string cmPolicies::GetPolicyWarning(cmPolicies::PolicyID id) { - std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos = - this->Policies.find(id); - std::ostringstream msg; msg << "Policy " << idToString(id) << " is not set: " - "" << pos->second->ShortDescription << " " + "" << idToShortDescription(id) << " " "Run \"cmake --help-policy " << idToString(id) << "\" for " "policy details. " "Use the cmake_policy command to set the policy " @@ -609,13 +621,10 @@ std::string cmPolicies::GetPolicyWarning(cmPolicies::PolicyID id) ///! return an error string for when a required policy is unspecified std::string cmPolicies::GetRequiredPolicyError(cmPolicies::PolicyID id) { - std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos = - this->Policies.find(id); - std::ostringstream error; error << "Policy " << idToString(id) << " is not set to NEW: " - "" << pos->second->ShortDescription << " " + "" << idToShortDescription(id) << " " "Run \"cmake --help-policy " << idToString(id) << "\" for " "policy details. " "CMake now requires this policy to be set to NEW by the project. " @@ -678,8 +687,7 @@ cmPolicies::DiagnoseAncientPolicies(std::vector<PolicyID> const& ancient, for(std::vector<PolicyID>::const_iterator i = ancient.begin(); i != ancient.end(); ++i) { - cmPolicy const* policy = this->Policies[*i]; - e << " " << idToString(*i) << ": " << policy->ShortDescription << "\n"; + e << " " << idToString(*i) << ": " << idToShortDescription(*i) << "\n"; } e << "However, this version of CMake no longer supports the OLD " << "behavior for these policies. " |