cmake/Source/cmVariableWatch.cxx

98 lines
3.0 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmVariableWatch.h"
2015-08-17 11:37:30 +02:00
#include "cmAlgorithms.h"
2016-10-30 18:24:19 +01:00
#include <algorithm>
#include <cm_auto_ptr.hxx>
#include <utility>
2016-07-09 11:21:54 +02:00
static const char* const cmVariableWatchAccessStrings[] = {
"READ_ACCESS", "UNKNOWN_READ_ACCESS", "UNKNOWN_DEFINED_ACCESS",
"MODIFIED_ACCESS", "REMOVED_ACCESS", "NO_ACCESS"
};
const char* cmVariableWatch::GetAccessAsString(int access_type)
{
2016-07-09 11:21:54 +02:00
if (access_type < 0 || access_type >= cmVariableWatch::NO_ACCESS) {
return "NO_ACCESS";
2016-07-09 11:21:54 +02:00
}
return cmVariableWatchAccessStrings[access_type];
}
cmVariableWatch::cmVariableWatch()
{
}
2016-07-09 11:21:54 +02:00
template <typename C>
2015-04-27 22:25:09 +02:00
void deleteAllSecond(typename C::value_type it)
{
2015-04-27 22:25:09 +02:00
cmDeleteAll(it.second);
}
2013-11-03 12:27:13 +02:00
2015-04-27 22:25:09 +02:00
cmVariableWatch::~cmVariableWatch()
{
std::for_each(this->WatchMap.begin(), this->WatchMap.end(),
deleteAllSecond<cmVariableWatch::StringToVectorOfPairs>);
}
2016-07-09 11:21:54 +02:00
bool cmVariableWatch::AddWatch(const std::string& variable, WatchMethod method,
void* client_data /*=0*/,
2013-11-03 12:27:13 +02:00
DeleteData delete_data /*=0*/)
{
2016-10-30 18:24:19 +01:00
CM_AUTO_PTR<cmVariableWatch::Pair> p(new cmVariableWatch::Pair);
2013-11-03 12:27:13 +02:00
p->Method = method;
p->ClientData = client_data;
p->DeleteDataCall = delete_data;
cmVariableWatch::VectorOfPairs* vp = &this->WatchMap[variable];
cmVariableWatch::VectorOfPairs::size_type cc;
2016-07-09 11:21:54 +02:00
for (cc = 0; cc < vp->size(); cc++) {
2013-11-03 12:27:13 +02:00
cmVariableWatch::Pair* pair = (*vp)[cc];
2016-07-09 11:21:54 +02:00
if (pair->Method == method && client_data &&
client_data == pair->ClientData) {
2013-11-03 12:27:13 +02:00
// Callback already exists
return false;
}
2016-07-09 11:21:54 +02:00
}
vp->push_back(p.release());
2013-11-03 12:27:13 +02:00
return true;
}
2013-03-16 19:13:01 +02:00
void cmVariableWatch::RemoveWatch(const std::string& variable,
2016-07-09 11:21:54 +02:00
WatchMethod method, void* client_data /*=0*/)
{
2016-07-09 11:21:54 +02:00
if (!this->WatchMap.count(variable)) {
2013-11-03 12:27:13 +02:00
return;
2016-07-09 11:21:54 +02:00
}
cmVariableWatch::VectorOfPairs* vp = &this->WatchMap[variable];
cmVariableWatch::VectorOfPairs::iterator it;
2016-07-09 11:21:54 +02:00
for (it = vp->begin(); it != vp->end(); ++it) {
if ((*it)->Method == method &&
// If client_data is NULL, we want to disconnect all watches against
// the given method; otherwise match ClientData as well.
(!client_data || (client_data == (*it)->ClientData))) {
2013-11-03 12:27:13 +02:00
delete *it;
vp->erase(it);
return;
}
2016-07-09 11:21:54 +02:00
}
}
2016-07-09 11:21:54 +02:00
bool cmVariableWatch::VariableAccessed(const std::string& variable,
int access_type, const char* newValue,
const cmMakefile* mf) const
{
2013-03-16 19:13:01 +02:00
cmVariableWatch::StringToVectorOfPairs::const_iterator mit =
this->WatchMap.find(variable);
2016-07-09 11:21:54 +02:00
if (mit != this->WatchMap.end()) {
const cmVariableWatch::VectorOfPairs* vp = &mit->second;
cmVariableWatch::VectorOfPairs::const_iterator it;
2016-07-09 11:21:54 +02:00
for (it = vp->begin(); it != vp->end(); it++) {
(*it)->Method(variable, access_type, (*it)->ClientData, newValue, mf);
}
2016-07-09 11:21:54 +02:00
return true;
}
2016-03-29 18:52:50 +02:00
return false;
}