2001-02-12 22:26:25 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-02-12 22:26:25 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-02-12 22:26:25 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
|
|
|
|
#include "cmCacheManager.h"
|
|
|
|
#include "cmSystemTools.h"
|
2001-02-19 23:13:48 +03:00
|
|
|
#include "cmCacheManager.h"
|
|
|
|
#include "cmMakefile.h"
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2003-06-23 22:10:12 +04:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
|
2001-11-21 19:35:01 +03:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
# include <windows.h>
|
|
|
|
#endif // _WIN32
|
|
|
|
|
2001-02-12 22:26:25 +03:00
|
|
|
const char* cmCacheManagerTypes[] =
|
|
|
|
{ "BOOL",
|
|
|
|
"PATH",
|
2001-02-19 23:13:48 +03:00
|
|
|
"FILEPATH",
|
2001-02-12 22:26:25 +03:00
|
|
|
"STRING",
|
2001-04-12 23:34:09 +04:00
|
|
|
"INTERNAL",
|
2001-05-16 23:15:21 +04:00
|
|
|
"STATIC",
|
2002-09-11 22:05:45 +04:00
|
|
|
"UNINITIALIZED",
|
2001-02-12 22:26:25 +03:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2003-04-29 18:02:53 +04:00
|
|
|
const char* cmCacheManager::TypeToString(cmCacheManager::CacheEntryType type)
|
|
|
|
{
|
2005-03-15 16:13:48 +03:00
|
|
|
if ( type > 6 )
|
2003-04-29 18:02:53 +04:00
|
|
|
{
|
|
|
|
return cmCacheManagerTypes[6];
|
|
|
|
}
|
|
|
|
return cmCacheManagerTypes[type];
|
|
|
|
}
|
|
|
|
|
2001-02-12 22:26:25 +03:00
|
|
|
cmCacheManager::CacheEntryType cmCacheManager::StringToType(const char* s)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
while(cmCacheManagerTypes[i])
|
|
|
|
{
|
|
|
|
if(strcmp(s, cmCacheManagerTypes[i]) == 0)
|
|
|
|
{
|
|
|
|
return static_cast<CacheEntryType>(i);
|
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
++i;
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
return STRING;
|
|
|
|
}
|
|
|
|
|
2001-02-19 23:13:48 +03:00
|
|
|
bool cmCacheManager::LoadCache(cmMakefile* mf)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2001-04-26 00:09:17 +04:00
|
|
|
return this->LoadCache(mf->GetHomeOutputDirectory());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool cmCacheManager::LoadCache(const char* path)
|
2001-05-09 01:04:22 +04:00
|
|
|
{
|
2001-05-09 01:37:55 +04:00
|
|
|
return this->LoadCache(path,true);
|
2001-05-09 01:04:22 +04:00
|
|
|
}
|
2001-08-15 21:40:56 +04:00
|
|
|
|
2001-05-09 01:04:22 +04:00
|
|
|
bool cmCacheManager::LoadCache(const char* path,
|
2002-10-04 22:01:22 +04:00
|
|
|
bool internal)
|
2001-08-15 21:40:56 +04:00
|
|
|
{
|
2004-09-30 00:07:07 +04:00
|
|
|
std::set<cmStdString> emptySet;
|
2001-08-16 19:41:44 +04:00
|
|
|
return this->LoadCache(path, internal, emptySet, emptySet);
|
2001-08-15 21:40:56 +04:00
|
|
|
}
|
|
|
|
|
2003-08-01 22:10:26 +04:00
|
|
|
bool cmCacheManager::ParseEntry(const char* entry,
|
|
|
|
std::string& var,
|
|
|
|
std::string& value)
|
|
|
|
{
|
|
|
|
// input line is: key:type=value
|
2005-04-12 21:26:08 +04:00
|
|
|
static cmsys::RegularExpression reg("^([^:]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
|
2003-08-01 22:10:26 +04:00
|
|
|
// input line is: "key":type=value
|
2005-04-12 21:26:08 +04:00
|
|
|
static cmsys::RegularExpression regQuoted("^\"([^\"]*)\"=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
|
2003-08-01 22:10:26 +04:00
|
|
|
bool flag = false;
|
|
|
|
if(regQuoted.find(entry))
|
|
|
|
{
|
|
|
|
var = regQuoted.match(1);
|
|
|
|
value = regQuoted.match(2);
|
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
else if (reg.find(entry))
|
|
|
|
{
|
|
|
|
var = reg.match(1);
|
|
|
|
value = reg.match(2);
|
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if value is enclosed in single quotes ('foo') then remove them
|
|
|
|
// it is used to enclose trailing space or tab
|
|
|
|
if (flag &&
|
|
|
|
value.size() >= 2 &&
|
|
|
|
value[0] == '\'' &&
|
|
|
|
value[value.size() - 1] == '\'')
|
|
|
|
{
|
|
|
|
value = value.substr(1,
|
|
|
|
value.size() - 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return flag;
|
|
|
|
}
|
|
|
|
|
2001-11-21 01:51:03 +03:00
|
|
|
bool cmCacheManager::ParseEntry(const char* entry,
|
|
|
|
std::string& var,
|
|
|
|
std::string& value,
|
|
|
|
CacheEntryType& type)
|
|
|
|
{
|
|
|
|
// input line is: key:type=value
|
2005-04-12 21:26:08 +04:00
|
|
|
static cmsys::RegularExpression reg("^([^:]*):([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
|
2001-11-21 01:51:03 +03:00
|
|
|
// input line is: "key":type=value
|
2005-04-12 21:26:08 +04:00
|
|
|
static cmsys::RegularExpression regQuoted("^\"([^\"]*)\":([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
|
2001-12-05 23:29:36 +03:00
|
|
|
bool flag = false;
|
2001-11-21 01:51:03 +03:00
|
|
|
if(regQuoted.find(entry))
|
|
|
|
{
|
|
|
|
var = regQuoted.match(1);
|
|
|
|
type = cmCacheManager::StringToType(regQuoted.match(2).c_str());
|
|
|
|
value = regQuoted.match(3);
|
2001-12-05 23:29:36 +03:00
|
|
|
flag = true;
|
2001-11-21 01:51:03 +03:00
|
|
|
}
|
|
|
|
else if (reg.find(entry))
|
|
|
|
{
|
|
|
|
var = reg.match(1);
|
|
|
|
type = cmCacheManager::StringToType(reg.match(2).c_str());
|
|
|
|
value = reg.match(3);
|
2001-12-05 23:29:36 +03:00
|
|
|
flag = true;
|
2001-11-21 01:51:03 +03:00
|
|
|
}
|
2001-12-05 23:29:36 +03:00
|
|
|
|
|
|
|
// if value is enclosed in single quotes ('foo') then remove them
|
|
|
|
// it is used to enclose trailing space or tab
|
|
|
|
if (flag &&
|
|
|
|
value.size() >= 2 &&
|
|
|
|
value[0] == '\'' &&
|
|
|
|
value[value.size() - 1] == '\'')
|
|
|
|
{
|
|
|
|
value = value.substr(1,
|
|
|
|
value.size() - 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return flag;
|
2001-11-21 01:51:03 +03:00
|
|
|
}
|
|
|
|
|
2001-08-15 21:40:56 +04:00
|
|
|
bool cmCacheManager::LoadCache(const char* path,
|
2002-10-04 22:01:22 +04:00
|
|
|
bool internal,
|
2004-09-30 00:07:07 +04:00
|
|
|
std::set<cmStdString>& excludes,
|
|
|
|
std::set<cmStdString>& includes)
|
2001-04-26 00:09:17 +04:00
|
|
|
{
|
|
|
|
std::string cacheFile = path;
|
2001-02-19 23:13:48 +03:00
|
|
|
cacheFile += "/CMakeCache.txt";
|
2001-05-09 19:15:57 +04:00
|
|
|
// clear the old cache, if we are reading in internal values
|
|
|
|
if ( internal )
|
|
|
|
{
|
|
|
|
m_Cache.clear();
|
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
std::ifstream fin(cacheFile.c_str());
|
2001-02-12 22:26:25 +03:00
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2003-03-27 20:24:30 +03:00
|
|
|
const char *realbuffer;
|
|
|
|
std::string buffer;
|
2001-08-15 21:40:56 +04:00
|
|
|
std::string entryKey;
|
2001-02-12 22:26:25 +03:00
|
|
|
while(fin)
|
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
// Format is key:type=value
|
2001-02-12 22:26:25 +03:00
|
|
|
CacheEntry e;
|
2003-03-27 20:24:30 +03:00
|
|
|
cmSystemTools::GetLineFromStream(fin, buffer);
|
|
|
|
realbuffer = buffer.c_str();
|
2001-10-11 22:57:59 +04:00
|
|
|
while(*realbuffer != '0' &&
|
|
|
|
(*realbuffer == ' ' ||
|
|
|
|
*realbuffer == '\t' ||
|
2004-10-27 04:13:39 +04:00
|
|
|
*realbuffer == '\r' ||
|
2001-10-11 22:57:59 +04:00
|
|
|
*realbuffer == '\n'))
|
2001-10-26 17:29:21 +04:00
|
|
|
{
|
2001-10-11 22:57:59 +04:00
|
|
|
realbuffer++;
|
2001-10-26 17:29:21 +04:00
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
// skip blank lines and comment lines
|
2001-10-11 22:57:59 +04:00
|
|
|
if(realbuffer[0] == '#' || realbuffer[0] == 0)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
continue;
|
|
|
|
}
|
2001-12-08 02:12:17 +03:00
|
|
|
while(realbuffer[0] == '/' && realbuffer[1] == '/')
|
2001-04-26 22:53:44 +04:00
|
|
|
{
|
2002-09-11 22:05:45 +04:00
|
|
|
e.m_Properties["HELPSTRING"] += &realbuffer[2];
|
2003-03-27 20:24:30 +03:00
|
|
|
cmSystemTools::GetLineFromStream(fin, buffer);
|
|
|
|
realbuffer = buffer.c_str();
|
2001-04-26 22:53:44 +04:00
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2001-11-21 01:51:03 +03:00
|
|
|
if(cmCacheManager::ParseEntry(realbuffer, entryKey, e.m_Value, e.m_Type))
|
2001-06-07 22:52:29 +04:00
|
|
|
{
|
2001-08-15 21:40:56 +04:00
|
|
|
if ( excludes.find(entryKey) == excludes.end() )
|
2002-10-04 22:01:22 +04:00
|
|
|
{
|
|
|
|
// Load internal values if internal is set.
|
|
|
|
// If the entry is not internal to the cache being loaded
|
|
|
|
// or if it is in the list of internal entries to be
|
|
|
|
// imported, load it.
|
|
|
|
if ( internal || (e.m_Type != INTERNAL) ||
|
|
|
|
(includes.find(entryKey) != includes.end()) )
|
|
|
|
{
|
|
|
|
// If we are loading the cache from another project,
|
|
|
|
// make all loaded entries internal so that it is
|
|
|
|
// not visible in the gui
|
|
|
|
if (!internal)
|
|
|
|
{
|
2001-11-27 00:32:10 +03:00
|
|
|
e.m_Type = INTERNAL;
|
2002-09-11 22:05:45 +04:00
|
|
|
e.m_Properties["HELPSTRING"] = "DO NOT EDIT, ";
|
|
|
|
e.m_Properties["HELPSTRING"] += entryKey;
|
|
|
|
e.m_Properties["HELPSTRING"] += " loaded from external file. "
|
2001-10-10 18:22:50 +04:00
|
|
|
"To change this value edit this file: ";
|
2002-09-11 22:05:45 +04:00
|
|
|
e.m_Properties["HELPSTRING"] += path;
|
2002-10-04 22:01:22 +04:00
|
|
|
e.m_Properties["HELPSTRING"] += "/CMakeCache.txt" ;
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
if ( e.m_Type == cmCacheManager::INTERNAL &&
|
|
|
|
(entryKey.size() > strlen("-ADVANCED")) &&
|
|
|
|
strcmp(entryKey.c_str() + (entryKey.size() - strlen("-ADVANCED")),
|
|
|
|
"-ADVANCED") == 0 )
|
|
|
|
{
|
2002-10-04 22:01:22 +04:00
|
|
|
std::string value = e.m_Value;
|
2002-09-11 22:05:45 +04:00
|
|
|
std::string akey = entryKey.substr(0, (entryKey.size() - strlen("-ADVANCED")));
|
|
|
|
cmCacheManager::CacheIterator it = this->GetCacheIterator(akey.c_str());
|
|
|
|
if ( it.IsAtEnd() )
|
|
|
|
{
|
|
|
|
e.m_Type = cmCacheManager::UNINITIALIZED;
|
|
|
|
m_Cache[akey] = e;
|
|
|
|
}
|
2002-10-04 22:01:22 +04:00
|
|
|
if (!it.Find(akey.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Internal CMake error when reading cache");
|
|
|
|
}
|
|
|
|
it.SetProperty("ADVANCED", value.c_str());
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2004-06-23 18:13:02 +04:00
|
|
|
else if ( e.m_Type == cmCacheManager::INTERNAL &&
|
|
|
|
(entryKey.size() > strlen("-MODIFIED")) &&
|
|
|
|
strcmp(entryKey.c_str() + (entryKey.size() - strlen("-MODIFIED")),
|
|
|
|
"-MODIFIED") == 0 )
|
|
|
|
{
|
|
|
|
std::string value = e.m_Value;
|
|
|
|
std::string akey = entryKey.substr(0, (entryKey.size() - strlen("-MODIFIED")));
|
|
|
|
cmCacheManager::CacheIterator it = this->GetCacheIterator(akey.c_str());
|
|
|
|
if ( it.IsAtEnd() )
|
|
|
|
{
|
|
|
|
e.m_Type = cmCacheManager::UNINITIALIZED;
|
|
|
|
m_Cache[akey] = e;
|
|
|
|
}
|
|
|
|
if (!it.Find(akey.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Internal CMake error when reading cache");
|
|
|
|
}
|
|
|
|
it.SetProperty("MODIFIED", value.c_str());
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
else
|
|
|
|
{
|
2003-08-02 17:33:23 +04:00
|
|
|
e.m_Initialized = true;
|
2002-09-11 22:05:45 +04:00
|
|
|
m_Cache[entryKey] = e;
|
|
|
|
}
|
2002-10-04 22:01:22 +04:00
|
|
|
}
|
|
|
|
}
|
2001-06-07 22:52:29 +04:00
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
else
|
|
|
|
{
|
2001-10-26 17:29:21 +04:00
|
|
|
cmSystemTools::Error("Parse error in cache file ", cacheFile.c_str(),
|
2002-10-04 22:01:22 +04:00
|
|
|
". Offending entry: ", realbuffer);
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
}
|
2001-06-07 22:52:29 +04:00
|
|
|
// if CMAKE version not found in the list file
|
|
|
|
// add them as version 0.0
|
|
|
|
if(!this->GetCacheValue("CMAKE_CACHE_MINOR_VERSION"))
|
|
|
|
{
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MINOR_VERSION", "0",
|
|
|
|
"Minor version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MAJOR_VERSION", "0",
|
|
|
|
"Major version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
|
|
|
|
|
|
|
}
|
2001-11-21 01:51:03 +03:00
|
|
|
// check to make sure the cache directory has not
|
|
|
|
// been moved
|
2001-11-01 18:42:07 +03:00
|
|
|
if ( internal && this->GetCacheValue("CMAKE_CACHEFILE_DIR") )
|
2001-10-30 22:36:50 +03:00
|
|
|
{
|
2001-11-01 18:42:07 +03:00
|
|
|
std::string currentcwd = path;
|
|
|
|
std::string oldcwd = this->GetCacheValue("CMAKE_CACHEFILE_DIR");
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(currentcwd);
|
2001-11-22 01:45:01 +03:00
|
|
|
currentcwd += "/CMakeCache.txt";
|
|
|
|
oldcwd += "/CMakeCache.txt";
|
|
|
|
if(!cmSystemTools::SameFile(oldcwd.c_str(), currentcwd.c_str()))
|
2001-11-02 02:36:56 +03:00
|
|
|
{
|
2001-11-22 01:45:01 +03:00
|
|
|
std::string message =
|
|
|
|
std::string("The current CMakeCache.txt directory ") +
|
|
|
|
currentcwd + std::string(" is different than the directory ") +
|
|
|
|
std::string(this->GetCacheValue("CMAKE_CACHEFILE_DIR")) +
|
|
|
|
std::string(" where CMackeCache.txt was created. This may result "
|
|
|
|
"in binaries being created in the wrong place. If you "
|
|
|
|
"are not sure, reedit the CMakeCache.txt");
|
|
|
|
cmSystemTools::Error(message.c_str());
|
2001-11-01 18:42:07 +03:00
|
|
|
}
|
2001-10-26 17:29:21 +04:00
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
return true;
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
|
2001-06-07 22:52:29 +04:00
|
|
|
bool cmCacheManager::SaveCache(cmMakefile* mf)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2001-04-26 00:09:17 +04:00
|
|
|
return this->SaveCache(mf->GetHomeOutputDirectory());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-07 22:52:29 +04:00
|
|
|
bool cmCacheManager::SaveCache(const char* path)
|
2001-04-26 00:09:17 +04:00
|
|
|
{
|
|
|
|
std::string cacheFile = path;
|
2001-02-19 23:13:48 +03:00
|
|
|
cacheFile += "/CMakeCache.txt";
|
2001-02-23 03:24:43 +03:00
|
|
|
std::string tempFile = cacheFile;
|
|
|
|
tempFile += ".tmp";
|
|
|
|
std::ofstream fout(tempFile.c_str());
|
2001-02-12 22:26:25 +03:00
|
|
|
if(!fout)
|
2004-09-08 00:55:25 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
cmSystemTools::Error("Unable to open cache file for save. ",
|
|
|
|
cacheFile.c_str());
|
2004-09-08 00:55:25 +04:00
|
|
|
cmSystemTools::ReportLastSystemError("");
|
2001-02-12 22:26:25 +03:00
|
|
|
return false;
|
|
|
|
}
|
2005-07-06 23:51:11 +04:00
|
|
|
// before writing the cache, update the version numbers
|
2001-06-07 22:52:29 +04:00
|
|
|
// to the
|
|
|
|
char temp[1024];
|
|
|
|
sprintf(temp, "%d", cmMakefile::GetMinorVersion());
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MINOR_VERSION", temp,
|
|
|
|
"Minor version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
|
|
|
sprintf(temp, "%d", cmMakefile::GetMajorVersion());
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MAJOR_VERSION", temp,
|
|
|
|
"Major version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
2001-10-26 17:29:21 +04:00
|
|
|
|
2002-11-13 22:31:44 +03:00
|
|
|
this->AddCacheEntry("CMAKE_CACHE_RELEASE_VERSION", cmMakefile::GetReleaseVersion(),
|
|
|
|
"Major version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
|
|
|
|
2001-10-26 17:29:21 +04:00
|
|
|
// Let us store the current working directory so that if somebody
|
|
|
|
// Copies it, he will not be surprised
|
|
|
|
std::string currentcwd = path;
|
2001-10-30 22:36:50 +03:00
|
|
|
if ( currentcwd[0] >= 'A' && currentcwd[0] <= 'Z' &&
|
|
|
|
currentcwd[1] == ':' )
|
|
|
|
{
|
|
|
|
currentcwd[0] = currentcwd[0] - 'A' + 'a';
|
|
|
|
}
|
2001-10-26 17:29:21 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(currentcwd);
|
2001-10-30 22:15:15 +03:00
|
|
|
this->AddCacheEntry("CMAKE_CACHEFILE_DIR", currentcwd.c_str(),
|
|
|
|
"This is the directory where this CMakeCahe.txt"
|
|
|
|
" was created", cmCacheManager::INTERNAL);
|
2001-10-26 17:29:21 +04:00
|
|
|
|
2001-02-23 03:24:43 +03:00
|
|
|
fout << "# This is the CMakeCache file.\n"
|
2002-01-15 02:52:19 +03:00
|
|
|
<< "# For build in directory: " << currentcwd << "\n"
|
2001-02-23 03:24:43 +03:00
|
|
|
<< "# You can edit this file to change values found and used by cmake.\n"
|
|
|
|
<< "# If you do not want to change any of the values, simply exit the editor.\n"
|
|
|
|
<< "# If you do want to change a value, simply edit, save, and exit the editor.\n"
|
|
|
|
<< "# The syntax for the file is as follows:\n"
|
|
|
|
<< "# KEY:TYPE=VALUE\n"
|
2003-02-14 17:54:15 +03:00
|
|
|
<< "# KEY is the name of a variable in the cache.\n"
|
2001-02-23 03:24:43 +03:00
|
|
|
<< "# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!.\n"
|
|
|
|
<< "# VALUE is the current value for the KEY.\n\n";
|
|
|
|
|
2001-05-11 22:49:46 +04:00
|
|
|
fout << "########################\n";
|
|
|
|
fout << "# EXTERNAL cache entries\n";
|
|
|
|
fout << "########################\n";
|
|
|
|
fout << "\n";
|
|
|
|
|
2001-08-22 19:58:17 +04:00
|
|
|
for( std::map<cmStdString, CacheEntry>::const_iterator i = m_Cache.begin();
|
2001-05-08 02:11:16 +04:00
|
|
|
i != m_Cache.end(); ++i)
|
|
|
|
{
|
|
|
|
const CacheEntry& ce = (*i).second;
|
|
|
|
CacheEntryType t = ce.m_Type;
|
2003-08-02 17:33:23 +04:00
|
|
|
if(t == cmCacheManager::UNINITIALIZED || !ce.m_Initialized)
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2002-09-11 22:38:29 +04:00
|
|
|
/*
|
2002-10-04 22:01:22 +04:00
|
|
|
// This should be added in, but is not for now.
|
2002-09-11 22:05:45 +04:00
|
|
|
cmSystemTools::Error("Cache entry \"", (*i).first.c_str(),
|
|
|
|
"\" is uninitialized");
|
2002-09-11 22:38:29 +04:00
|
|
|
*/
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
else if(t != INTERNAL)
|
2001-05-08 02:11:16 +04:00
|
|
|
{
|
|
|
|
// Format is key:type=value
|
2002-09-11 22:05:45 +04:00
|
|
|
std::map<cmStdString,cmStdString>::const_iterator it =
|
|
|
|
ce.m_Properties.find("HELPSTRING");
|
|
|
|
if ( it == ce.m_Properties.end() )
|
|
|
|
{
|
|
|
|
cmCacheManager::OutputHelpString(fout, "Missing description");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmCacheManager::OutputHelpString(fout, it->second);
|
|
|
|
}
|
2001-06-07 22:52:29 +04:00
|
|
|
std::string key;
|
|
|
|
// support : in key name by double quoting
|
2001-12-08 02:27:26 +03:00
|
|
|
if((*i).first.find(':') != std::string::npos ||
|
2002-10-04 22:01:22 +04:00
|
|
|
(*i).first.find("//") == 0)
|
2001-06-07 22:52:29 +04:00
|
|
|
{
|
|
|
|
key = "\"";
|
|
|
|
key += i->first;
|
|
|
|
key += "\"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
key = i->first;
|
|
|
|
}
|
|
|
|
fout << key.c_str() << ":"
|
2001-12-05 23:29:36 +03:00
|
|
|
<< cmCacheManagerTypes[t] << "=";
|
|
|
|
// if value has trailing space or tab, enclose it in single quotes
|
|
|
|
if (ce.m_Value.size() &&
|
|
|
|
(ce.m_Value[ce.m_Value.size() - 1] == ' ' ||
|
|
|
|
ce.m_Value[ce.m_Value.size() - 1] == '\t'))
|
|
|
|
{
|
|
|
|
fout << '\'' << ce.m_Value << '\'';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << ce.m_Value;
|
|
|
|
}
|
|
|
|
fout << "\n\n";
|
2001-05-08 02:11:16 +04:00
|
|
|
}
|
|
|
|
}
|
2001-05-11 22:49:46 +04:00
|
|
|
|
|
|
|
fout << "\n";
|
|
|
|
fout << "########################\n";
|
|
|
|
fout << "# INTERNAL cache entries\n";
|
|
|
|
fout << "########################\n";
|
|
|
|
fout << "\n";
|
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
for( cmCacheManager::CacheIterator i = this->NewIterator();
|
|
|
|
!i.IsAtEnd(); i.Next())
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2003-08-02 17:33:23 +04:00
|
|
|
if ( !i.Initialized() )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
CacheEntryType t = i.GetType();
|
2002-09-17 19:48:52 +04:00
|
|
|
bool advanced = i.PropertyExists("ADVANCED");
|
2002-09-11 22:05:45 +04:00
|
|
|
if ( advanced )
|
2001-05-08 02:11:16 +04:00
|
|
|
{
|
|
|
|
// Format is key:type=value
|
2001-06-07 22:52:29 +04:00
|
|
|
std::string key;
|
2002-09-11 22:05:45 +04:00
|
|
|
std::string rkey = i.GetName();
|
|
|
|
std::string helpstring;
|
|
|
|
// If this is advanced variable, we have to do some magic for
|
|
|
|
// backward compatibility
|
|
|
|
helpstring = "Advanced flag for variable: ";
|
|
|
|
helpstring += i.GetName();
|
|
|
|
rkey += "-ADVANCED";
|
|
|
|
cmCacheManager::OutputHelpString(fout, helpstring.c_str());
|
2001-06-07 22:52:29 +04:00
|
|
|
// support : in key name by double quoting
|
2002-09-11 22:05:45 +04:00
|
|
|
if(rkey.find(':') != std::string::npos ||
|
|
|
|
rkey.find("//") == 0)
|
2001-06-07 22:52:29 +04:00
|
|
|
{
|
|
|
|
key = "\"";
|
2002-09-11 22:05:45 +04:00
|
|
|
key += rkey;
|
2001-06-07 22:52:29 +04:00
|
|
|
key += "\"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-09-11 22:05:45 +04:00
|
|
|
key = rkey;
|
|
|
|
}
|
2002-09-17 19:48:52 +04:00
|
|
|
fout << key.c_str() << ":INTERNAL="
|
|
|
|
<< (i.GetPropertyAsBool("ADVANCED") ? "1" : "0") << "\n";
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2004-06-23 18:13:02 +04:00
|
|
|
bool modified = i.PropertyExists("MODIFIED");
|
|
|
|
if ( modified )
|
|
|
|
{
|
|
|
|
// Format is key:type=value
|
|
|
|
std::string key;
|
|
|
|
std::string rkey = i.GetName();
|
|
|
|
std::string helpstring;
|
|
|
|
// If this is advanced variable, we have to do some magic for
|
|
|
|
// backward compatibility
|
|
|
|
helpstring = "Modified flag for variable: ";
|
|
|
|
helpstring += i.GetName();
|
|
|
|
rkey += "-MODIFIED";
|
|
|
|
cmCacheManager::OutputHelpString(fout, helpstring.c_str());
|
|
|
|
// support : in key name by double quoting
|
|
|
|
if(rkey.find(':') != std::string::npos ||
|
|
|
|
rkey.find("//") == 0)
|
|
|
|
{
|
|
|
|
key = "\"";
|
|
|
|
key += rkey;
|
|
|
|
key += "\"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
key = rkey;
|
|
|
|
}
|
|
|
|
fout << key.c_str() << ":INTERNAL="
|
|
|
|
<< (i.GetPropertyAsBool("MODIFIED") ? "1" : "0") << "\n";
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
if(t == cmCacheManager::INTERNAL)
|
|
|
|
{
|
|
|
|
// Format is key:type=value
|
|
|
|
std::string key;
|
|
|
|
std::string rkey = i.GetName();
|
|
|
|
std::string helpstring;
|
2002-09-12 19:13:22 +04:00
|
|
|
const char* hs = i.GetProperty("HELPSTRING");
|
2002-09-12 19:12:31 +04:00
|
|
|
if ( hs )
|
|
|
|
{
|
|
|
|
helpstring = i.GetProperty("HELPSTRING");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
helpstring = "";
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
cmCacheManager::OutputHelpString(fout, helpstring.c_str());
|
|
|
|
// support : in key name by double quoting
|
|
|
|
if(rkey.find(':') != std::string::npos ||
|
|
|
|
rkey.find("//") == 0)
|
|
|
|
{
|
|
|
|
key = "\"";
|
|
|
|
key += rkey;
|
|
|
|
key += "\"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
key = rkey;
|
2001-06-07 22:52:29 +04:00
|
|
|
}
|
|
|
|
fout << key.c_str() << ":"
|
2001-12-05 23:29:36 +03:00
|
|
|
<< cmCacheManagerTypes[t] << "=";
|
|
|
|
// if value has trailing space or tab, enclose it in single quotes
|
2002-09-11 22:05:45 +04:00
|
|
|
std::string value = i.GetValue();
|
|
|
|
if (value.size() &&
|
|
|
|
(value[value.size() - 1] == ' ' ||
|
|
|
|
value[value.size() - 1] == '\t'))
|
2001-12-05 23:29:36 +03:00
|
|
|
{
|
2002-09-11 22:05:45 +04:00
|
|
|
fout << '\'' << value << '\'';
|
|
|
|
}
|
2001-12-05 23:29:36 +03:00
|
|
|
else
|
|
|
|
{
|
2002-09-11 22:05:45 +04:00
|
|
|
fout << value;
|
2001-12-05 23:29:36 +03:00
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
fout << "\n";
|
2001-05-08 02:11:16 +04:00
|
|
|
}
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
fout << "\n";
|
2001-02-23 03:24:43 +03:00
|
|
|
fout.close();
|
|
|
|
cmSystemTools::CopyFileIfDifferent(tempFile.c_str(),
|
|
|
|
cacheFile.c_str());
|
|
|
|
cmSystemTools::RemoveFile(tempFile.c_str());
|
2002-12-05 22:56:31 +03:00
|
|
|
std::string checkCacheFile = path;
|
2005-07-29 17:19:25 +04:00
|
|
|
checkCacheFile += "/CMakeFiles";
|
|
|
|
cmSystemTools::MakeDirectory(checkCacheFile.c_str());
|
2002-12-05 22:56:31 +03:00
|
|
|
checkCacheFile += "/cmake.check_cache";
|
|
|
|
std::ofstream checkCache(checkCacheFile.c_str());
|
|
|
|
if(!checkCache)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Unable to open check cache file for write. ",
|
|
|
|
checkCacheFile.c_str());
|
|
|
|
return false;
|
2001-12-05 23:29:36 +03:00
|
|
|
}
|
2002-12-05 22:56:31 +03:00
|
|
|
checkCache << "# This file is generated by cmake for dependency checking of the CMakeCache.txt file\n";
|
|
|
|
return true;
|
|
|
|
}
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2004-05-20 23:08:18 +04:00
|
|
|
bool cmCacheManager::DeleteCache(const char* path)
|
|
|
|
{
|
|
|
|
std::string cacheFile = path;
|
|
|
|
cacheFile += "/CMakeCache.txt";
|
|
|
|
cmSystemTools::RemoveFile(cacheFile.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
void cmCacheManager::OutputHelpString(std::ofstream& fout,
|
|
|
|
const std::string& helpString)
|
2001-04-24 00:40:29 +04:00
|
|
|
{
|
2001-04-26 22:53:44 +04:00
|
|
|
std::string::size_type end = helpString.size();
|
|
|
|
if(end == 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::string oneLine;
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string::size_type nextBreak = 60;
|
|
|
|
bool done = false;
|
|
|
|
|
|
|
|
while(!done)
|
|
|
|
{
|
|
|
|
if(nextBreak >= end)
|
|
|
|
{
|
|
|
|
nextBreak = end;
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while(nextBreak < end && helpString[nextBreak] != ' ')
|
|
|
|
{
|
|
|
|
nextBreak++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
oneLine = helpString.substr(pos, nextBreak - pos);
|
|
|
|
fout << "//" << oneLine.c_str() << "\n";
|
|
|
|
pos = nextBreak;
|
|
|
|
nextBreak += 60;
|
|
|
|
}
|
2001-04-24 00:40:29 +04:00
|
|
|
}
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
void cmCacheManager::RemoveCacheEntry(const char* key)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2002-04-30 22:00:14 +04:00
|
|
|
CacheEntryMap::iterator i = m_Cache.find(key);
|
|
|
|
if(i != m_Cache.end())
|
|
|
|
{
|
|
|
|
m_Cache.erase(i);
|
|
|
|
}
|
2001-10-29 18:19:34 +03:00
|
|
|
else
|
2002-04-30 22:00:14 +04:00
|
|
|
{
|
|
|
|
std::cerr << "Failed to remove entry:" << key << std::endl;
|
|
|
|
}
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
cmCacheManager::CacheEntry *cmCacheManager::GetCacheEntry(const char* key)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2002-04-30 22:00:14 +04:00
|
|
|
CacheEntryMap::iterator i = m_Cache.find(key);
|
|
|
|
if(i != m_Cache.end())
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2002-04-30 22:00:14 +04:00
|
|
|
return &i->second;
|
2001-04-25 00:49:12 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
cmCacheManager::CacheIterator cmCacheManager::GetCacheIterator(const char *key)
|
|
|
|
{
|
|
|
|
return CacheIterator(*this, key);
|
|
|
|
}
|
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
const char* cmCacheManager::GetCacheValue(const char* key) const
|
|
|
|
{
|
2002-04-30 22:00:14 +04:00
|
|
|
CacheEntryMap::const_iterator i = m_Cache.find(key);
|
2003-08-18 22:05:53 +04:00
|
|
|
if(i != m_Cache.end() &&
|
2003-08-02 17:33:23 +04:00
|
|
|
i->second.m_Initialized)
|
2001-04-25 00:49:12 +04:00
|
|
|
{
|
2002-04-30 22:00:14 +04:00
|
|
|
return i->second.m_Value.c_str();
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
|
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
void cmCacheManager::PrintCache(std::ostream& out) const
|
2001-02-23 03:24:43 +03:00
|
|
|
{
|
|
|
|
out << "=================================================" << std::endl;
|
|
|
|
out << "CMakeCache Contents:" << std::endl;
|
2001-08-22 19:58:17 +04:00
|
|
|
for(std::map<cmStdString, CacheEntry>::const_iterator i = m_Cache.begin();
|
2001-02-23 03:24:43 +03:00
|
|
|
i != m_Cache.end(); ++i)
|
|
|
|
{
|
2001-05-08 02:11:16 +04:00
|
|
|
if((*i).second.m_Type != INTERNAL)
|
|
|
|
{
|
|
|
|
out << (*i).first.c_str() << " = " << (*i).second.m_Value.c_str() << std::endl;
|
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
}
|
|
|
|
out << "\n\n";
|
|
|
|
out << "To change values in the CMakeCache, \nedit CMakeCache.txt in your output directory.\n";
|
|
|
|
out << "=================================================" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
void cmCacheManager::AddCacheEntry(const char* key,
|
|
|
|
const char* value,
|
|
|
|
const char* helpString,
|
2002-10-04 22:01:22 +04:00
|
|
|
CacheEntryType type)
|
2001-04-26 22:53:44 +04:00
|
|
|
{
|
2002-09-11 22:05:45 +04:00
|
|
|
CacheEntry& e = m_Cache[key];
|
|
|
|
if ( value )
|
|
|
|
{
|
|
|
|
e.m_Value = value;
|
2003-08-02 17:33:23 +04:00
|
|
|
e.m_Initialized = true;
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-08-02 17:33:23 +04:00
|
|
|
e.m_Value = "";
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2001-04-26 22:53:44 +04:00
|
|
|
e.m_Type = type;
|
2001-05-04 19:30:46 +04:00
|
|
|
// make sure we only use unix style paths
|
|
|
|
if(type == FILEPATH || type == PATH)
|
|
|
|
{
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(e.m_Value);
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
if ( helpString )
|
|
|
|
{
|
|
|
|
e.m_Properties["HELPSTRING"] = helpString;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
e.m_Properties["HELPSTRING"] = "(This variable does not exists and should not be used)";
|
|
|
|
}
|
2001-04-26 22:53:44 +04:00
|
|
|
m_Cache[key] = e;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCacheManager::AddCacheEntry(const char* key, bool v,
|
|
|
|
const char* helpString)
|
2001-04-24 20:40:37 +04:00
|
|
|
{
|
|
|
|
if(v)
|
|
|
|
{
|
2001-04-26 22:53:44 +04:00
|
|
|
this->AddCacheEntry(key, "ON", helpString, cmCacheManager::BOOL);
|
2001-04-24 20:40:37 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-04-26 22:53:44 +04:00
|
|
|
this->AddCacheEntry(key, "OFF", helpString, cmCacheManager::BOOL);
|
2001-04-24 20:40:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-05 22:55:46 +03:00
|
|
|
bool cmCacheManager::CacheIterator::IsAtEnd() const
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
|
|
|
return m_Position == m_Container.m_Cache.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCacheManager::CacheIterator::Begin()
|
|
|
|
{
|
|
|
|
m_Position = m_Container.m_Cache.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCacheManager::CacheIterator::Find(const char* key)
|
|
|
|
{
|
|
|
|
m_Position = m_Container.m_Cache.find(key);
|
2002-09-11 22:38:29 +04:00
|
|
|
return !this->IsAtEnd();
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCacheManager::CacheIterator::Next()
|
|
|
|
{
|
2003-02-05 22:55:46 +03:00
|
|
|
if (!this->IsAtEnd())
|
|
|
|
{
|
|
|
|
++m_Position;
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCacheManager::CacheIterator::SetValue(const char* value)
|
|
|
|
{
|
2003-02-05 22:55:46 +03:00
|
|
|
if (this->IsAtEnd())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
CacheEntry* entry = &this->GetEntry();
|
2003-08-02 17:33:23 +04:00
|
|
|
if ( value )
|
|
|
|
{
|
|
|
|
entry->m_Value = value;
|
|
|
|
entry->m_Initialized = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
entry->m_Value = "";
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* cmCacheManager::CacheIterator::GetProperty(const char* property) const
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2003-02-05 22:55:46 +03:00
|
|
|
// make sure it is not at the end
|
|
|
|
if (this->IsAtEnd())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-11 22:08:39 +04:00
|
|
|
if ( !strcmp(property, "TYPE") || !strcmp(property, "VALUE") )
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Property \"", property,
|
|
|
|
"\" cannot be accessed through the GetProperty()");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
const CacheEntry* ent = &this->GetEntry();
|
|
|
|
std::map<cmStdString,cmStdString>::const_iterator it =
|
|
|
|
ent->m_Properties.find(property);
|
|
|
|
if ( it == ent->m_Properties.end() )
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2002-09-11 22:05:45 +04:00
|
|
|
return 0;
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
return it->second.c_str();
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2002-08-21 19:57:12 +04:00
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
void cmCacheManager::CacheIterator::SetProperty(const char* p, const char* v)
|
2002-08-21 19:57:12 +04:00
|
|
|
{
|
2003-02-05 22:55:46 +03:00
|
|
|
// make sure it is not at the end
|
|
|
|
if (this->IsAtEnd())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-09-11 22:08:39 +04:00
|
|
|
if ( !strcmp(p, "TYPE") || !strcmp(p, "VALUE") )
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Property \"", p,
|
|
|
|
"\" cannot be accessed through the SetProperty()");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
CacheEntry* ent = &this->GetEntry();
|
|
|
|
ent->m_Properties[p] = v;
|
2002-08-21 19:57:12 +04:00
|
|
|
}
|
|
|
|
|
2003-08-08 17:22:56 +04:00
|
|
|
bool cmCacheManager::CacheIterator::GetValueAsBool() const
|
|
|
|
{
|
|
|
|
return cmSystemTools::IsOn(this->GetEntry().m_Value.c_str());
|
|
|
|
}
|
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
bool cmCacheManager::CacheIterator::GetPropertyAsBool(const char* property) const
|
2002-08-21 19:57:12 +04:00
|
|
|
{
|
2003-02-05 22:55:46 +03:00
|
|
|
// make sure it is not at the end
|
|
|
|
if (this->IsAtEnd())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-09-11 22:08:39 +04:00
|
|
|
if ( !strcmp(property, "TYPE") || !strcmp(property, "VALUE") )
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Property \"", property,
|
|
|
|
"\" cannot be accessed through the GetPropertyAsBool()");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const CacheEntry* ent = &this->GetEntry();
|
|
|
|
std::map<cmStdString,cmStdString>::const_iterator it =
|
|
|
|
ent->m_Properties.find(property);
|
|
|
|
if ( it == ent->m_Properties.end() )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return cmSystemTools::IsOn(it->second.c_str());
|
2002-08-21 19:57:12 +04:00
|
|
|
}
|
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
|
|
|
|
void cmCacheManager::CacheIterator::SetProperty(const char* p, bool v)
|
2002-08-21 19:57:12 +04:00
|
|
|
{
|
2003-02-05 22:55:46 +03:00
|
|
|
// make sure it is not at the end
|
|
|
|
if (this->IsAtEnd())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-09-11 22:08:39 +04:00
|
|
|
if ( !strcmp(p, "TYPE") || !strcmp(p, "VALUE") )
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Property \"", p,
|
|
|
|
"\" cannot be accessed through the SetProperty()");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
CacheEntry* ent = &this->GetEntry();
|
|
|
|
ent->m_Properties[p] = v ? "ON" : "OFF";
|
2002-08-21 19:57:12 +04:00
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
|
2002-09-17 19:48:52 +04:00
|
|
|
bool cmCacheManager::CacheIterator::PropertyExists(const char* property) const
|
|
|
|
{
|
2003-02-05 22:55:46 +03:00
|
|
|
// make sure it is not at the end
|
|
|
|
if (this->IsAtEnd())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-09-17 19:48:52 +04:00
|
|
|
if ( !strcmp(property, "TYPE") || !strcmp(property, "VALUE") )
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Property \"", property,
|
|
|
|
"\" cannot be accessed through the PropertyExists()");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const CacheEntry* ent = &this->GetEntry();
|
|
|
|
std::map<cmStdString,cmStdString>::const_iterator it =
|
|
|
|
ent->m_Properties.find(property);
|
|
|
|
if ( it == ent->m_Properties.end() )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|