2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License 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"
|
2012-03-14 16:16:05 +04:00
|
|
|
#include "cmGeneratedFileStream.h"
|
2001-02-19 23:13:48 +03:00
|
|
|
#include "cmMakefile.h"
|
2006-06-14 20:28:32 +04:00
|
|
|
#include "cmake.h"
|
2006-11-29 23:59:16 +03:00
|
|
|
#include "cmVersion.h"
|
2006-03-21 20:54:31 +03:00
|
|
|
|
2006-02-21 07:08:12 +03:00
|
|
|
#include <cmsys/Directory.hxx>
|
2006-03-21 20:54:31 +03:00
|
|
|
#include <cmsys/Glob.hxx>
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2003-06-23 22:10:12 +04:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
const char* cmCacheManagerTypes[] =
|
2001-02-12 22:26:25 +03:00
|
|
|
{ "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
|
|
|
|
};
|
|
|
|
|
2009-03-13 17:53:47 +03:00
|
|
|
cmCacheManager::cmCacheManager(cmake* cm)
|
2008-01-30 01:30:48 +03:00
|
|
|
{
|
|
|
|
this->CacheMajorVersion = 0;
|
|
|
|
this->CacheMinorVersion = 0;
|
2009-03-13 17:53:47 +03:00
|
|
|
this->CMakeInstance = cm;
|
2008-01-30 01:30:48 +03:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-03-10 18:10:59 +03:00
|
|
|
bool cmCacheManager::IsType(const char* s)
|
|
|
|
{
|
|
|
|
for(int i=0; cmCacheManagerTypes[i]; ++i)
|
|
|
|
{
|
|
|
|
if(strcmp(s, cmCacheManagerTypes[i]) == 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-08 00:34:39 +04:00
|
|
|
bool cmCacheManager::LoadCache(const std::string& 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
|
|
|
|
2014-02-08 00:34:39 +04:00
|
|
|
bool cmCacheManager::LoadCache(const std::string& path,
|
2002-10-04 22:01:22 +04:00
|
|
|
bool internal)
|
2001-08-15 21:40:56 +04:00
|
|
|
{
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string> emptySet;
|
2001-08-16 19:41:44 +04:00
|
|
|
return this->LoadCache(path, internal, emptySet, emptySet);
|
2001-08-15 21:40:56 +04:00
|
|
|
}
|
|
|
|
|
2014-02-22 04:05:55 +04:00
|
|
|
static bool ParseEntryWithoutType(const std::string& entry,
|
2010-11-22 23:45:30 +03:00
|
|
|
std::string& var,
|
|
|
|
std::string& value)
|
2003-08-01 22:10:26 +04:00
|
|
|
{
|
2010-11-22 22:56:55 +03:00
|
|
|
// input line is: key=value
|
2006-03-10 21:06:26 +03:00
|
|
|
static cmsys::RegularExpression reg(
|
2010-11-22 22:56:55 +03:00
|
|
|
"^([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
|
|
|
|
// input line is: "key"=value
|
2006-03-10 21:06:26 +03: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
|
2006-03-10 21:06:26 +03:00
|
|
|
if (flag &&
|
2003-08-01 22:10:26 +04:00
|
|
|
value.size() >= 2 &&
|
2006-03-10 21:06:26 +03:00
|
|
|
value[0] == '\'' &&
|
|
|
|
value[value.size() - 1] == '\'')
|
2003-08-01 22:10:26 +04:00
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
value = value.substr(1,
|
2003-08-01 22:10:26 +04:00
|
|
|
value.size() - 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return flag;
|
|
|
|
}
|
|
|
|
|
2014-02-22 04:05:55 +04:00
|
|
|
bool cmCacheManager::ParseEntry(const std::string& entry,
|
2001-11-21 01:51:03 +03:00
|
|
|
std::string& var,
|
|
|
|
std::string& value,
|
|
|
|
CacheEntryType& type)
|
|
|
|
{
|
|
|
|
// input line is: key:type=value
|
2006-03-10 21:06:26 +03: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
|
2006-03-10 21:06:26 +03: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
|
2006-03-10 21:06:26 +03:00
|
|
|
if (flag &&
|
2001-12-05 23:29:36 +03:00
|
|
|
value.size() >= 2 &&
|
2006-03-10 21:06:26 +03:00
|
|
|
value[0] == '\'' &&
|
|
|
|
value[value.size() - 1] == '\'')
|
2001-12-05 23:29:36 +03:00
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
value = value.substr(1,
|
2001-12-05 23:29:36 +03:00
|
|
|
value.size() - 2);
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:45:30 +03:00
|
|
|
if (!flag)
|
|
|
|
{
|
|
|
|
return ParseEntryWithoutType(entry, var, value);
|
|
|
|
}
|
|
|
|
|
2001-12-05 23:29:36 +03:00
|
|
|
return flag;
|
2001-11-21 01:51:03 +03:00
|
|
|
}
|
|
|
|
|
2014-02-08 00:34:39 +04:00
|
|
|
void cmCacheManager::CleanCMakeFiles(const std::string& path)
|
2006-03-09 23:47:18 +03:00
|
|
|
{
|
|
|
|
std::string glob = path;
|
2006-06-14 20:28:32 +04:00
|
|
|
glob += cmake::GetCMakeFilesDirectory();
|
|
|
|
glob += "/*.cmake";
|
2006-03-21 20:54:31 +03:00
|
|
|
cmsys::Glob globIt;
|
2006-03-09 23:47:18 +03:00
|
|
|
globIt.FindFiles(glob);
|
|
|
|
std::vector<std::string> files = globIt.GetFiles();
|
|
|
|
for(std::vector<std::string>::iterator i = files.begin();
|
|
|
|
i != files.end(); ++i)
|
|
|
|
{
|
|
|
|
cmSystemTools::RemoveFile(i->c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-08 00:34:39 +04:00
|
|
|
bool cmCacheManager::LoadCache(const std::string& path,
|
2002-10-04 22:01:22 +04:00
|
|
|
bool internal,
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string>& excludes,
|
|
|
|
std::set<std::string>& 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 )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Cache.clear();
|
2001-05-09 19:15:57 +04:00
|
|
|
}
|
2006-03-09 23:47:18 +03:00
|
|
|
if(!cmSystemTools::FileExists(cacheFile.c_str()))
|
|
|
|
{
|
|
|
|
this->CleanCMakeFiles(path);
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::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
|
2009-03-10 18:10:42 +03:00
|
|
|
std::string helpString;
|
2001-02-12 22:26:25 +03:00
|
|
|
CacheEntry e;
|
2009-03-13 17:53:47 +03:00
|
|
|
e.Properties.SetCMakeInstance(this->CMakeInstance);
|
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
|
|
|
{
|
2007-06-01 19:06:48 +04:00
|
|
|
if ((realbuffer[2] == '\\') && (realbuffer[3]=='n'))
|
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
helpString += "\n";
|
|
|
|
helpString += &realbuffer[4];
|
2007-06-01 19:06:48 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
helpString += &realbuffer[2];
|
2007-06-01 19:06:48 +04:00
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
}
|
2009-03-10 18:10:42 +03:00
|
|
|
e.SetProperty("HELPSTRING", helpString.c_str());
|
2010-11-22 23:45:30 +03:00
|
|
|
if(cmCacheManager::ParseEntry(realbuffer, entryKey, e.Value, e.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.
|
2012-08-13 21:42:58 +04:00
|
|
|
if ( internal || (e.Type != INTERNAL) ||
|
2002-10-04 22:01:22 +04:00
|
|
|
(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)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
e.Type = INTERNAL;
|
2009-03-10 18:10:42 +03:00
|
|
|
helpString = "DO NOT EDIT, ";
|
|
|
|
helpString += entryKey;
|
|
|
|
helpString += " loaded from external file. "
|
2001-10-10 18:22:50 +04:00
|
|
|
"To change this value edit this file: ";
|
2009-03-10 18:10:42 +03:00
|
|
|
helpString += path;
|
|
|
|
helpString += "/CMakeCache.txt" ;
|
|
|
|
e.SetProperty("HELPSTRING", helpString.c_str());
|
2002-10-04 22:01:22 +04:00
|
|
|
}
|
2009-03-12 17:49:05 +03:00
|
|
|
if(!this->ReadPropertyEntry(entryKey, e))
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
e.Initialized = true;
|
|
|
|
this->Cache[entryKey] = e;
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
2008-01-24 15:37:08 +03:00
|
|
|
this->CacheMajorVersion = 0;
|
|
|
|
this->CacheMinorVersion = 0;
|
|
|
|
if(const char* cmajor = this->GetCacheValue("CMAKE_CACHE_MAJOR_VERSION"))
|
2001-06-07 22:52:29 +04:00
|
|
|
{
|
2008-01-24 15:37:08 +03:00
|
|
|
unsigned int v=0;
|
|
|
|
if(sscanf(cmajor, "%u", &v) == 1)
|
|
|
|
{
|
|
|
|
this->CacheMajorVersion = v;
|
|
|
|
}
|
|
|
|
if(const char* cminor = this->GetCacheValue("CMAKE_CACHE_MINOR_VERSION"))
|
|
|
|
{
|
|
|
|
if(sscanf(cminor, "%u", &v) == 1)
|
|
|
|
{
|
|
|
|
this->CacheMinorVersion = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// CMake version not found in the list file.
|
|
|
|
// Set as version 0.0
|
2001-06-07 22:52:29 +04:00
|
|
|
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);
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2001-06-07 22:52:29 +04:00
|
|
|
}
|
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()))
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
|
|
|
std::string message =
|
2001-11-22 01:45:01 +03:00
|
|
|
std::string("The current CMakeCache.txt directory ") +
|
2006-03-10 21:06:26 +03:00
|
|
|
currentcwd + std::string(" is different than the directory ") +
|
2001-11-22 01:45:01 +03:00
|
|
|
std::string(this->GetCacheValue("CMAKE_CACHEFILE_DIR")) +
|
2010-12-06 16:44:26 +03:00
|
|
|
std::string(" where CMakeCache.txt was created. This may result "
|
2001-11-22 01:45:01 +03:00
|
|
|
"in binaries being created in the wrong place. If you "
|
|
|
|
"are not sure, reedit the CMakeCache.txt");
|
2006-03-10 21:06:26 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-03-12 17:49:05 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCacheManager::PersistentProperties[] =
|
|
|
|
{
|
|
|
|
"ADVANCED",
|
|
|
|
"MODIFIED",
|
2009-03-12 17:52:40 +03:00
|
|
|
"STRINGS",
|
2009-03-12 17:49:05 +03:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCacheManager::ReadPropertyEntry(std::string const& entryKey,
|
|
|
|
CacheEntry& e)
|
|
|
|
{
|
|
|
|
// All property entries are internal.
|
|
|
|
if(e.Type != cmCacheManager::INTERNAL)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* end = entryKey.c_str() + entryKey.size();
|
|
|
|
for(const char** p = this->PersistentProperties; *p; ++p)
|
|
|
|
{
|
|
|
|
std::string::size_type plen = strlen(*p) + 1;
|
|
|
|
if(entryKey.size() > plen && *(end-plen) == '-' &&
|
|
|
|
strcmp(end-plen+1, *p) == 0)
|
|
|
|
{
|
|
|
|
std::string key = entryKey.substr(0, entryKey.size() - plen);
|
|
|
|
cmCacheManager::CacheIterator it = this->GetCacheIterator(key.c_str());
|
|
|
|
if(it.IsAtEnd())
|
|
|
|
{
|
|
|
|
// Create an entry and store the property.
|
|
|
|
CacheEntry& ne = this->Cache[key];
|
2009-03-13 17:53:47 +03:00
|
|
|
ne.Properties.SetCMakeInstance(this->CMakeInstance);
|
2009-03-12 17:49:05 +03:00
|
|
|
ne.Type = cmCacheManager::UNINITIALIZED;
|
|
|
|
ne.SetProperty(*p, e.Value.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Store this property on its entry.
|
|
|
|
it.SetProperty(*p, e.Value.c_str());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCacheManager::WritePropertyEntries(std::ostream& os,
|
|
|
|
CacheIterator const& i)
|
|
|
|
{
|
|
|
|
for(const char** p = this->PersistentProperties; *p; ++p)
|
|
|
|
{
|
|
|
|
if(const char* value = i.GetProperty(*p))
|
|
|
|
{
|
|
|
|
std::string helpstring = *p;
|
|
|
|
helpstring += " property for variable: ";
|
|
|
|
helpstring += i.GetName();
|
|
|
|
cmCacheManager::OutputHelpString(os, helpstring);
|
|
|
|
|
|
|
|
std::string key = i.GetName();
|
|
|
|
key += "-";
|
|
|
|
key += *p;
|
|
|
|
this->OutputKey(os, key);
|
|
|
|
os << ":INTERNAL=";
|
|
|
|
this->OutputValue(os, value);
|
|
|
|
os << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03: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());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-08 00:34:39 +04:00
|
|
|
bool cmCacheManager::SaveCache(const std::string& path)
|
2001-04-26 00:09:17 +04:00
|
|
|
{
|
|
|
|
std::string cacheFile = path;
|
2001-02-19 23:13:48 +03:00
|
|
|
cacheFile += "/CMakeCache.txt";
|
2012-03-14 16:16:05 +04:00
|
|
|
cmGeneratedFileStream fout(cacheFile.c_str());
|
|
|
|
fout.SetCopyIfDifferent(true);
|
2001-02-12 22:26:25 +03:00
|
|
|
if(!fout)
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Unable to open cache file for save. ",
|
2001-02-19 23:13:48 +03:00
|
|
|
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
|
2006-03-10 21:06:26 +03:00
|
|
|
// to the
|
2001-06-07 22:52:29 +04:00
|
|
|
char temp[1024];
|
2006-11-29 23:59:16 +03:00
|
|
|
sprintf(temp, "%d", cmVersion::GetMinorVersion());
|
2001-06-07 22:52:29 +04:00
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MINOR_VERSION", temp,
|
|
|
|
"Minor version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
2006-11-29 23:59:16 +03:00
|
|
|
sprintf(temp, "%d", cmVersion::GetMajorVersion());
|
2001-06-07 22:52:29 +04:00
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MAJOR_VERSION", temp,
|
|
|
|
"Major version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
2009-03-05 23:17:07 +03:00
|
|
|
sprintf(temp, "%d", cmVersion::GetPatchVersion());
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_PATCH_VERSION", temp,
|
|
|
|
"Patch version of cmake used to create the "
|
2002-11-13 22:31:44 +03:00
|
|
|
"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] == ':' )
|
|
|
|
{
|
2009-09-30 19:41:34 +04:00
|
|
|
// Cast added to avoid compiler warning. Cast is ok because
|
|
|
|
// value is guaranteed to fit in char by the above if...
|
|
|
|
currentcwd[0] = static_cast<char>(currentcwd[0] - 'A' + 'a');
|
2001-10-30 22:36:50 +03:00
|
|
|
}
|
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(),
|
2009-09-30 19:41:34 +04:00
|
|
|
"This is the directory where this CMakeCache.txt"
|
2001-10-30 22:15:15 +03:00
|
|
|
" 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"
|
2006-02-14 19:17:35 +03:00
|
|
|
<< "# For build in directory: " << currentcwd << "\n";
|
2006-03-10 21:06:26 +03:00
|
|
|
cmCacheManager::CacheEntry* cmakeCacheEntry
|
|
|
|
= this->GetCacheEntry("CMAKE_COMMAND");
|
2006-02-14 19:17:35 +03:00
|
|
|
if ( cmakeCacheEntry )
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
fout << "# It was generated by CMake: " <<
|
2006-03-15 19:02:08 +03:00
|
|
|
cmakeCacheEntry->Value << std::endl;
|
2006-02-14 19:17:35 +03:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
fout << "# You can edit this file to change values found and used by cmake."
|
|
|
|
<< std::endl
|
|
|
|
<< "# If you do not want to change any of the values, simply exit the "
|
|
|
|
"editor." << std::endl
|
|
|
|
<< "# If you do want to change a value, simply edit, save, and exit "
|
|
|
|
"the editor." << std::endl
|
2001-02-23 03:24:43 +03:00
|
|
|
<< "# 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"
|
2013-05-01 13:36:14 +04:00
|
|
|
<< "# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT "
|
2006-03-10 21:06:26 +03:00
|
|
|
"TYPE!." << std::endl
|
2001-02-23 03:24:43 +03:00
|
|
|
<< "# 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";
|
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
for( std::map<std::string, CacheEntry>::const_iterator i =
|
2006-05-10 21:56:27 +04:00
|
|
|
this->Cache.begin(); i != this->Cache.end(); ++i)
|
2001-05-08 02:11:16 +04:00
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
const CacheEntry& ce = (*i).second;
|
2006-03-15 19:02:08 +03:00
|
|
|
CacheEntryType t = ce.Type;
|
2007-06-04 21:48:11 +04:00
|
|
|
if(!ce.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.
|
2006-03-10 21:06:26 +03:00
|
|
|
cmSystemTools::Error("Cache entry \"", (*i).first.c_str(),
|
2002-09-11 22:05:45 +04:00
|
|
|
"\" 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
|
2009-03-10 18:10:42 +03:00
|
|
|
if(const char* help = ce.GetProperty("HELPSTRING"))
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
cmCacheManager::OutputHelpString(fout, help);
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
cmCacheManager::OutputHelpString(fout, "Missing description");
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2009-03-12 17:49:05 +03:00
|
|
|
this->OutputKey(fout, i->first);
|
|
|
|
fout << ":" << cmCacheManagerTypes[t] << "=";
|
|
|
|
this->OutputValue(fout, ce.Value);
|
2001-12-05 23:29:36 +03:00
|
|
|
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();
|
2009-03-12 17:49:05 +03:00
|
|
|
this->WritePropertyEntries(fout, i);
|
2002-09-11 22:05:45 +04:00
|
|
|
if(t == cmCacheManager::INTERNAL)
|
|
|
|
{
|
|
|
|
// Format is key:type=value
|
2009-03-12 17:49:05 +03:00
|
|
|
if(const char* help = i.GetProperty("HELPSTRING"))
|
2002-09-12 19:12:31 +04:00
|
|
|
{
|
2009-03-12 17:49:05 +03:00
|
|
|
this->OutputHelpString(fout, help);
|
2001-12-05 23:29:36 +03:00
|
|
|
}
|
2009-03-12 17:49:05 +03:00
|
|
|
this->OutputKey(fout, i.GetName());
|
|
|
|
fout << ":" << cmCacheManagerTypes[t] << "=";
|
|
|
|
this->OutputValue(fout, i.GetValue());
|
2006-03-10 21:06:26 +03:00
|
|
|
fout << "\n";
|
2001-05-08 02:11:16 +04:00
|
|
|
}
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
fout << "\n";
|
2012-03-14 16:16:05 +04:00
|
|
|
fout.Close();
|
2002-12-05 22:56:31 +03:00
|
|
|
std::string checkCacheFile = path;
|
2006-06-14 20:28:32 +04:00
|
|
|
checkCacheFile += cmake::GetCMakeFilesDirectory();
|
2005-07-29 17:19:25 +04:00
|
|
|
cmSystemTools::MakeDirectory(checkCacheFile.c_str());
|
2002-12-05 22:56:31 +03:00
|
|
|
checkCacheFile += "/cmake.check_cache";
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream checkCache(checkCacheFile.c_str());
|
2002-12-05 22:56:31 +03:00
|
|
|
if(!checkCache)
|
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
cmSystemTools::Error("Unable to open check cache file for write. ",
|
2002-12-05 22:56:31 +03:00
|
|
|
checkCacheFile.c_str());
|
|
|
|
return false;
|
2001-12-05 23:29:36 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
checkCache << "# This file is generated by cmake for dependency checking "
|
|
|
|
"of the CMakeCache.txt file\n";
|
2002-12-05 22:56:31 +03:00
|
|
|
return true;
|
|
|
|
}
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2014-02-08 00:34:39 +04:00
|
|
|
bool cmCacheManager::DeleteCache(const std::string& path)
|
2004-05-20 23:08:18 +04:00
|
|
|
{
|
|
|
|
std::string cacheFile = path;
|
2006-02-21 07:08:12 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(cacheFile);
|
|
|
|
std::string cmakeFiles = cacheFile;
|
2004-05-20 23:08:18 +04:00
|
|
|
cacheFile += "/CMakeCache.txt";
|
2013-02-18 18:51:40 +04:00
|
|
|
if(cmSystemTools::FileExists(cacheFile.c_str()))
|
2006-02-21 07:08:12 +03:00
|
|
|
{
|
2013-02-18 18:51:40 +04:00
|
|
|
cmSystemTools::RemoveFile(cacheFile.c_str());
|
|
|
|
// now remove the files in the CMakeFiles directory
|
|
|
|
// this cleans up language cache files
|
|
|
|
cmakeFiles += cmake::GetCMakeFilesDirectory();
|
|
|
|
if(cmSystemTools::FileIsDirectory(cmakeFiles.c_str()))
|
2006-02-21 07:08:12 +03:00
|
|
|
{
|
2013-02-18 18:51:40 +04:00
|
|
|
cmSystemTools::RemoveADirectory(cmakeFiles.c_str());
|
2006-02-21 07:08:12 +03:00
|
|
|
}
|
|
|
|
}
|
2004-05-20 23:08:18 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-03-12 17:49:05 +03:00
|
|
|
void cmCacheManager::OutputKey(std::ostream& fout, std::string const& key)
|
|
|
|
{
|
|
|
|
// support : in key name by double quoting
|
|
|
|
const char* q = (key.find(':') != key.npos ||
|
|
|
|
key.find("//") == 0)? "\"" : "";
|
|
|
|
fout << q << key << q;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCacheManager::OutputValue(std::ostream& fout, std::string const& value)
|
|
|
|
{
|
|
|
|
// if value has trailing space or tab, enclose it in single quotes
|
|
|
|
if (value.size() &&
|
|
|
|
(value[value.size() - 1] == ' ' ||
|
|
|
|
value[value.size() - 1] == '\t'))
|
|
|
|
{
|
|
|
|
fout << '\'' << value << '\'';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCacheManager::OutputHelpString(std::ostream& fout,
|
2001-04-26 22:53:44 +04:00
|
|
|
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;
|
2007-06-01 19:06:48 +04:00
|
|
|
for (std::string::size_type i=0; i<=end; i++)
|
2001-04-26 22:53:44 +04:00
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
if ((i==end)
|
2007-06-01 19:06:48 +04:00
|
|
|
|| (helpString[i]=='\n')
|
|
|
|
|| ((i-pos >= 60) && (helpString[i]==' ')))
|
2001-04-26 22:53:44 +04:00
|
|
|
{
|
2007-06-01 19:06:48 +04:00
|
|
|
fout << "//";
|
|
|
|
if (helpString[pos] == '\n')
|
2001-04-26 22:53:44 +04:00
|
|
|
{
|
2007-06-01 19:06:48 +04:00
|
|
|
pos++;
|
|
|
|
fout << "\\n";
|
2001-04-26 22:53:44 +04:00
|
|
|
}
|
2007-06-01 19:06:48 +04:00
|
|
|
oneLine = helpString.substr(pos, i - pos);
|
2014-03-11 16:35:32 +04:00
|
|
|
fout << oneLine << "\n";
|
2007-06-01 19:06:48 +04:00
|
|
|
pos = i;
|
2001-04-26 22:53:44 +04:00
|
|
|
}
|
|
|
|
}
|
2001-04-24 00:40:29 +04:00
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
void cmCacheManager::RemoveCacheEntry(const std::string& key)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
CacheEntryMap::iterator i = this->Cache.find(key);
|
|
|
|
if(i != this->Cache.end())
|
2002-04-30 22:00:14 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Cache.erase(i);
|
2002-04-30 22:00:14 +04:00
|
|
|
}
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
cmCacheManager::CacheEntry *cmCacheManager::GetCacheEntry(
|
|
|
|
const std::string& key)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
CacheEntryMap::iterator i = this->Cache.find(key);
|
|
|
|
if(i != this->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;
|
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
cmCacheManager::CacheIterator cmCacheManager::GetCacheIterator(
|
|
|
|
const char *key)
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
|
|
|
return CacheIterator(*this, key);
|
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
const char* cmCacheManager::GetCacheValue(const std::string& key) const
|
2001-04-25 00:49:12 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
CacheEntryMap::const_iterator i = this->Cache.find(key);
|
|
|
|
if(i != this->Cache.end() &&
|
|
|
|
i->second.Initialized)
|
2001-04-25 00:49:12 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return i->second.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;
|
2014-02-10 09:21:34 +04:00
|
|
|
for(std::map<std::string, CacheEntry>::const_iterator i =
|
2006-05-10 21:56:27 +04:00
|
|
|
this->Cache.begin(); i != this->Cache.end(); ++i)
|
2001-02-23 03:24:43 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if((*i).second.Type != INTERNAL)
|
2001-05-08 02:11:16 +04:00
|
|
|
{
|
2014-03-11 16:35:32 +04:00
|
|
|
out << (*i).first << " = " << (*i).second.Value
|
2006-03-15 19:02:08 +03:00
|
|
|
<< std::endl;
|
2001-05-08 02:11:16 +04:00
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
}
|
|
|
|
out << "\n\n";
|
2006-03-10 21:06:26 +03:00
|
|
|
out << "To change values in the CMakeCache, "
|
|
|
|
<< std::endl << "edit CMakeCache.txt in your output directory.\n";
|
2001-02-23 03:24:43 +03:00
|
|
|
out << "=================================================" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
void cmCacheManager::AddCacheEntry(const std::string& key,
|
2006-03-10 21:06:26 +03:00
|
|
|
const char* value,
|
2001-04-26 22:53:44 +04:00
|
|
|
const char* helpString,
|
2002-10-04 22:01:22 +04:00
|
|
|
CacheEntryType type)
|
2001-04-26 22:53:44 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
CacheEntry& e = this->Cache[key];
|
2009-03-13 17:53:47 +03:00
|
|
|
e.Properties.SetCMakeInstance(this->CMakeInstance);
|
2002-09-11 22:05:45 +04:00
|
|
|
if ( value )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
e.Value = value;
|
|
|
|
e.Initialized = true;
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
else
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
e.Value = "";
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
e.Type = type;
|
2001-05-04 19:30:46 +04:00
|
|
|
// make sure we only use unix style paths
|
|
|
|
if(type == FILEPATH || type == PATH)
|
|
|
|
{
|
2009-02-09 16:25:55 +03:00
|
|
|
if(e.Value.find(';') != e.Value.npos)
|
|
|
|
{
|
|
|
|
std::vector<std::string> paths;
|
|
|
|
cmSystemTools::ExpandListArgument(e.Value, paths);
|
|
|
|
const char* sep = "";
|
2009-02-11 01:25:20 +03:00
|
|
|
e.Value = "";
|
2009-02-09 16:25:55 +03:00
|
|
|
for(std::vector<std::string>::iterator i = paths.begin();
|
|
|
|
i != paths.end(); ++i)
|
|
|
|
{
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(*i);
|
|
|
|
e.Value += sep;
|
|
|
|
e.Value += *i;
|
|
|
|
sep = ";";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(e.Value);
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2009-03-10 18:10:42 +03:00
|
|
|
e.SetProperty("HELPSTRING", helpString? helpString :
|
|
|
|
"(This variable does not exist and should not be used)");
|
2013-05-16 23:51:45 +04:00
|
|
|
if (this->Cache[key].Value == e.Value)
|
|
|
|
{
|
|
|
|
this->CMakeInstance->UnwatchUnusedCli(key);
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Cache[key] = e;
|
2001-04-26 22:53:44 +04:00
|
|
|
}
|
|
|
|
|
2003-02-05 22:55:46 +03:00
|
|
|
bool cmCacheManager::CacheIterator::IsAtEnd() const
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->Position == this->Container.Cache.end();
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
void cmCacheManager::CacheIterator::Begin()
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
this->Position = this->Container.Cache.begin();
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
bool cmCacheManager::CacheIterator::Find(const std::string& key)
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Position = this->Container.Cache.find(key);
|
2002-09-11 22:38:29 +04:00
|
|
|
return !this->IsAtEnd();
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
void cmCacheManager::CacheIterator::Next()
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2003-02-05 22:55:46 +03:00
|
|
|
if (!this->IsAtEnd())
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
++this->Position;
|
2003-02-05 22:55:46 +03:00
|
|
|
}
|
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 )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
entry->Value = value;
|
|
|
|
entry->Initialized = true;
|
2003-08-02 17:33:23 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
entry->Value = "";
|
2003-08-02 17:33:23 +04:00
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCacheManager::CacheIterator::GetValueAsBool() const
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
return cmSystemTools::IsOn(this->GetEntry().Value.c_str());
|
|
|
|
}
|
2003-02-05 22:55:46 +03:00
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char*
|
2013-09-03 00:27:32 +04:00
|
|
|
cmCacheManager::CacheEntry::GetProperty(const std::string& prop) const
|
2009-03-10 18:10:42 +03:00
|
|
|
{
|
2013-09-03 00:27:32 +04:00
|
|
|
if(prop == "TYPE")
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
return cmCacheManagerTypes[this->Type];
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2013-09-03 00:27:32 +04:00
|
|
|
else if(prop == "VALUE")
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
return this->Value.c_str();
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2009-03-10 18:10:42 +03:00
|
|
|
bool c = false;
|
|
|
|
return
|
|
|
|
this->Properties.GetPropertyValue(prop, cmProperty::CACHE, c);
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2002-08-21 19:57:12 +04:00
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2013-09-03 00:27:32 +04:00
|
|
|
void cmCacheManager::CacheEntry::SetProperty(const std::string& prop,
|
2009-03-10 18:10:42 +03:00
|
|
|
const char* value)
|
2002-08-21 19:57:12 +04:00
|
|
|
{
|
2013-09-03 00:27:32 +04:00
|
|
|
if(prop == "TYPE")
|
2003-02-05 22:55:46 +03:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
this->Type = cmCacheManager::StringToType(value? value : "STRING");
|
2003-02-05 22:55:46 +03:00
|
|
|
}
|
2013-09-03 00:27:32 +04:00
|
|
|
else if(prop == "VALUE")
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
this->Value = value? value : "";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->Properties.SetProperty(prop, value, cmProperty::CACHE);
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2003-08-08 17:22:56 +04:00
|
|
|
}
|
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2013-09-03 00:27:32 +04:00
|
|
|
void cmCacheManager::CacheEntry::AppendProperty(const std::string& prop,
|
2011-07-14 01:14:41 +04:00
|
|
|
const char* value,
|
|
|
|
bool asString)
|
2002-08-21 19:57:12 +04:00
|
|
|
{
|
2013-09-03 00:27:32 +04:00
|
|
|
if(prop == "TYPE")
|
2003-02-05 22:55:46 +03:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
this->Type = cmCacheManager::StringToType(value? value : "STRING");
|
2003-02-05 22:55:46 +03:00
|
|
|
}
|
2013-09-03 00:27:32 +04:00
|
|
|
else if(prop == "VALUE")
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
if(value)
|
|
|
|
{
|
2011-07-14 01:14:41 +04:00
|
|
|
if(!this->Value.empty() && *value && !asString)
|
2009-03-10 18:10:42 +03:00
|
|
|
{
|
|
|
|
this->Value += ";";
|
|
|
|
}
|
|
|
|
this->Value += value;
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2009-03-10 18:10:42 +03:00
|
|
|
else
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2011-07-14 01:14:41 +04:00
|
|
|
this->Properties.AppendProperty(prop, value, cmProperty::CACHE, asString);
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2002-08-21 19:57:12 +04:00
|
|
|
}
|
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2013-09-03 00:27:32 +04:00
|
|
|
const char* cmCacheManager::CacheIterator::GetProperty(
|
|
|
|
const std::string& prop) const
|
2002-08-21 19:57:12 +04:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
if(!this->IsAtEnd())
|
2003-02-05 22:55:46 +03:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
return this->GetEntry().GetProperty(prop);
|
2003-02-05 22:55:46 +03:00
|
|
|
}
|
2009-03-10 18:10:42 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2003-02-05 22:55:46 +03:00
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2013-09-03 00:27:32 +04:00
|
|
|
void cmCacheManager::CacheIterator::SetProperty(const std::string& p,
|
|
|
|
const char* v)
|
2009-03-10 18:10:42 +03:00
|
|
|
{
|
|
|
|
if(!this->IsAtEnd())
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2009-03-12 20:11:48 +03:00
|
|
|
this->GetEntry().SetProperty(p, v);
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2002-08-21 19:57:12 +04:00
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2013-09-03 00:27:32 +04:00
|
|
|
void cmCacheManager::CacheIterator::AppendProperty(const std::string& p,
|
2011-07-14 01:14:41 +04:00
|
|
|
const char* v,
|
|
|
|
bool asString)
|
2002-09-17 19:48:52 +04:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
if(!this->IsAtEnd())
|
2003-02-05 22:55:46 +03:00
|
|
|
{
|
2011-07-14 01:14:41 +04:00
|
|
|
this->GetEntry().AppendProperty(p, v, asString);
|
2003-02-05 22:55:46 +03:00
|
|
|
}
|
2009-03-10 18:10:42 +03:00
|
|
|
}
|
2003-02-05 22:55:46 +03:00
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2013-09-03 00:27:32 +04:00
|
|
|
bool cmCacheManager::CacheIterator::GetPropertyAsBool(
|
|
|
|
const std::string& prop) const
|
2009-03-10 18:10:42 +03:00
|
|
|
{
|
|
|
|
if(const char* value = this->GetProperty(prop))
|
2002-09-17 19:48:52 +04:00
|
|
|
{
|
2009-03-10 18:10:42 +03:00
|
|
|
return cmSystemTools::IsOn(value);
|
2002-09-17 19:48:52 +04:00
|
|
|
}
|
2009-03-10 18:10:42 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2013-09-03 00:27:32 +04:00
|
|
|
void cmCacheManager::CacheIterator::SetProperty(const std::string& p, bool v)
|
2009-03-10 18:10:42 +03:00
|
|
|
{
|
|
|
|
this->SetProperty(p, v ? "ON" : "OFF");
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2013-09-03 00:27:32 +04:00
|
|
|
bool cmCacheManager::CacheIterator::PropertyExists(
|
|
|
|
const std::string& prop) const
|
2009-03-10 18:10:42 +03:00
|
|
|
{
|
|
|
|
return this->GetProperty(prop)? true:false;
|
2002-09-17 19:48:52 +04:00
|
|
|
}
|
2008-01-24 15:37:08 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCacheManager::NeedCacheCompatibility(int major, int minor)
|
|
|
|
{
|
|
|
|
// Compatibility is not needed if the cache version is zero because
|
|
|
|
// the cache was created or modified by the user.
|
|
|
|
if(this->CacheMajorVersion == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compatibility is needed if the cache version is equal to or lower
|
|
|
|
// than the given version.
|
2014-02-10 23:52:59 +04:00
|
|
|
cmIML_INT_uint64_t actual_compat =
|
2008-01-24 15:37:08 +03:00
|
|
|
CMake_VERSION_ENCODE(this->CacheMajorVersion, this->CacheMinorVersion, 0);
|
|
|
|
return (actual_compat &&
|
|
|
|
actual_compat <= CMake_VERSION_ENCODE(major, minor, 0));
|
|
|
|
}
|