|
@@ -2,8 +2,11 @@
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
|
#include "cmDefinitions.h"
|
|
|
|
|
|
+#include "cm_string_view.hxx"
|
|
|
+
|
|
|
#include <assert.h>
|
|
|
-#include <set>
|
|
|
+#include <functional>
|
|
|
+#include <unordered_set>
|
|
|
#include <utility>
|
|
|
|
|
|
cmDefinitions::Def cmDefinitions::NoDef;
|
|
@@ -14,7 +17,7 @@ cmDefinitions::Def const& cmDefinitions::GetInternal(const std::string& key,
|
|
|
{
|
|
|
assert(begin != end);
|
|
|
{
|
|
|
- MapType::iterator it = begin->Map.find(key);
|
|
|
+ auto it = begin->Map.find(key);
|
|
|
if (it != begin->Map.end()) {
|
|
|
it->second.Used = true;
|
|
|
return it->second;
|
|
@@ -56,33 +59,10 @@ bool cmDefinitions::HasKey(const std::string& key, StackIter begin,
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
-void cmDefinitions::Set(const std::string& key, cm::string_view value)
|
|
|
-{
|
|
|
- this->Map[key] = Def(value);
|
|
|
-}
|
|
|
-
|
|
|
-void cmDefinitions::Unset(const std::string& key)
|
|
|
-{
|
|
|
- this->Map[key] = Def();
|
|
|
-}
|
|
|
-
|
|
|
-std::vector<std::string> cmDefinitions::UnusedKeys() const
|
|
|
-{
|
|
|
- std::vector<std::string> keys;
|
|
|
- keys.reserve(this->Map.size());
|
|
|
- // Consider local definitions.
|
|
|
- for (auto const& mi : this->Map) {
|
|
|
- if (!mi.second.Used) {
|
|
|
- keys.push_back(mi.first);
|
|
|
- }
|
|
|
- }
|
|
|
- return keys;
|
|
|
-}
|
|
|
-
|
|
|
cmDefinitions cmDefinitions::MakeClosure(StackIter begin, StackIter end)
|
|
|
{
|
|
|
cmDefinitions closure;
|
|
|
- std::set<std::string> undefined;
|
|
|
+ std::unordered_set<cm::string_view> undefined;
|
|
|
for (StackIter it = begin; it != end; ++it) {
|
|
|
// Consider local definitions.
|
|
|
for (auto const& mi : it->Map) {
|
|
@@ -92,7 +72,7 @@ cmDefinitions cmDefinitions::MakeClosure(StackIter begin, StackIter end)
|
|
|
if (mi.second.Exists) {
|
|
|
closure.Map.insert(mi);
|
|
|
} else {
|
|
|
- undefined.insert(mi.first);
|
|
|
+ undefined.emplace(mi.first);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -104,13 +84,13 @@ std::vector<std::string> cmDefinitions::ClosureKeys(StackIter begin,
|
|
|
StackIter end)
|
|
|
{
|
|
|
std::vector<std::string> defined;
|
|
|
- std::set<std::string> bound;
|
|
|
+ std::unordered_set<cm::string_view> bound;
|
|
|
|
|
|
for (StackIter it = begin; it != end; ++it) {
|
|
|
defined.reserve(defined.size() + it->Map.size());
|
|
|
for (auto const& mi : it->Map) {
|
|
|
// Use this key if it is not already set or unset.
|
|
|
- if (bound.insert(mi.first).second && mi.second.Exists) {
|
|
|
+ if (bound.emplace(mi.first).second && mi.second.Exists) {
|
|
|
defined.push_back(mi.first);
|
|
|
}
|
|
|
}
|
|
@@ -118,3 +98,26 @@ std::vector<std::string> cmDefinitions::ClosureKeys(StackIter begin,
|
|
|
|
|
|
return defined;
|
|
|
}
|
|
|
+
|
|
|
+void cmDefinitions::Set(const std::string& key, cm::string_view value)
|
|
|
+{
|
|
|
+ this->Map[key] = Def(value);
|
|
|
+}
|
|
|
+
|
|
|
+void cmDefinitions::Unset(const std::string& key)
|
|
|
+{
|
|
|
+ this->Map[key] = Def();
|
|
|
+}
|
|
|
+
|
|
|
+std::vector<std::string> cmDefinitions::UnusedKeys() const
|
|
|
+{
|
|
|
+ std::vector<std::string> keys;
|
|
|
+ keys.reserve(this->Map.size());
|
|
|
+ // Consider local definitions.
|
|
|
+ for (auto const& mi : this->Map) {
|
|
|
+ if (!mi.second.Used) {
|
|
|
+ keys.push_back(mi.first);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return keys;
|
|
|
+}
|