| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938 |
- /*============================================================================
- CMake - Cross Platform Makefile Generator
- Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
- Distributed under the OSI-approved BSD License (the "License");
- see accompanying file Copyright.txt for details.
- 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.
- ============================================================================*/
- #include "cmCacheManager.h"
- #include "cmSystemTools.h"
- #include "cmCacheManager.h"
- #include "cmGeneratedFileStream.h"
- #include "cmMakefile.h"
- #include "cmake.h"
- #include "cmVersion.h"
- #include <cmsys/Directory.hxx>
- #include <cmsys/Glob.hxx>
- #include <cmsys/FStream.hxx>
- #include <cmsys/RegularExpression.hxx>
- const char* cmCacheManagerTypes[] =
- { "BOOL",
- "PATH",
- "FILEPATH",
- "STRING",
- "INTERNAL",
- "STATIC",
- "UNINITIALIZED",
- 0
- };
- cmCacheManager::cmCacheManager(cmake* cm)
- {
- this->CacheMajorVersion = 0;
- this->CacheMinorVersion = 0;
- this->CMakeInstance = cm;
- }
- const char* cmCacheManager::TypeToString(cmCacheManager::CacheEntryType type)
- {
- if ( type > 6 )
- {
- return cmCacheManagerTypes[6];
- }
- return cmCacheManagerTypes[type];
- }
- cmCacheManager::CacheEntryType cmCacheManager::StringToType(const char* s)
- {
- int i = 0;
- while(cmCacheManagerTypes[i])
- {
- if(strcmp(s, cmCacheManagerTypes[i]) == 0)
- {
- return static_cast<CacheEntryType>(i);
- }
- ++i;
- }
- return STRING;
- }
- bool cmCacheManager::IsType(const char* s)
- {
- for(int i=0; cmCacheManagerTypes[i]; ++i)
- {
- if(strcmp(s, cmCacheManagerTypes[i]) == 0)
- {
- return true;
- }
- }
- return false;
- }
- bool cmCacheManager::LoadCache(cmMakefile* mf)
- {
- return this->LoadCache(mf->GetHomeOutputDirectory());
- }
- bool cmCacheManager::LoadCache(const std::string& path)
- {
- return this->LoadCache(path,true);
- }
- bool cmCacheManager::LoadCache(const std::string& path,
- bool internal)
- {
- std::set<std::string> emptySet;
- return this->LoadCache(path, internal, emptySet, emptySet);
- }
- static bool ParseEntryWithoutType(const std::string& entry,
- std::string& var,
- std::string& value)
- {
- // input line is: key=value
- static cmsys::RegularExpression reg(
- "^([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
- // input line is: "key"=value
- static cmsys::RegularExpression regQuoted(
- "^\"([^\"]*)\"=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
- 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;
- }
- bool cmCacheManager::ParseEntry(const std::string& entry,
- std::string& var,
- std::string& value,
- CacheEntryType& type)
- {
- // input line is: key:type=value
- static cmsys::RegularExpression reg(
- "^([^=:]*):([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
- // input line is: "key":type=value
- static cmsys::RegularExpression regQuoted(
- "^\"([^\"]*)\":([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
- bool flag = false;
- if(regQuoted.find(entry))
- {
- var = regQuoted.match(1);
- type = cmCacheManager::StringToType(regQuoted.match(2).c_str());
- value = regQuoted.match(3);
- flag = true;
- }
- else if (reg.find(entry))
- {
- var = reg.match(1);
- type = cmCacheManager::StringToType(reg.match(2).c_str());
- value = reg.match(3);
- 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);
- }
- if (!flag)
- {
- return ParseEntryWithoutType(entry, var, value);
- }
- return flag;
- }
- void cmCacheManager::CleanCMakeFiles(const std::string& path)
- {
- std::string glob = path;
- glob += cmake::GetCMakeFilesDirectory();
- glob += "/*.cmake";
- cmsys::Glob globIt;
- 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);
- }
- }
- bool cmCacheManager::LoadCache(const std::string& path,
- bool internal,
- std::set<std::string>& excludes,
- std::set<std::string>& includes)
- {
- std::string cacheFile = path;
- cacheFile += "/CMakeCache.txt";
- // clear the old cache, if we are reading in internal values
- if ( internal )
- {
- this->Cache.clear();
- }
- if(!cmSystemTools::FileExists(cacheFile.c_str()))
- {
- this->CleanCMakeFiles(path);
- return false;
- }
- cmsys::ifstream fin(cacheFile.c_str());
- if(!fin)
- {
- return false;
- }
- const char *realbuffer;
- std::string buffer;
- std::string entryKey;
- while(fin)
- {
- // Format is key:type=value
- std::string helpString;
- CacheEntry e;
- e.Properties.SetCMakeInstance(this->CMakeInstance);
- cmSystemTools::GetLineFromStream(fin, buffer);
- realbuffer = buffer.c_str();
- while(*realbuffer != '0' &&
- (*realbuffer == ' ' ||
- *realbuffer == '\t' ||
- *realbuffer == '\r' ||
- *realbuffer == '\n'))
- {
- realbuffer++;
- }
- // skip blank lines and comment lines
- if(realbuffer[0] == '#' || realbuffer[0] == 0)
- {
- continue;
- }
- while(realbuffer[0] == '/' && realbuffer[1] == '/')
- {
- if ((realbuffer[2] == '\\') && (realbuffer[3]=='n'))
- {
- helpString += "\n";
- helpString += &realbuffer[4];
- }
- else
- {
- helpString += &realbuffer[2];
- }
- cmSystemTools::GetLineFromStream(fin, buffer);
- realbuffer = buffer.c_str();
- if(!fin)
- {
- continue;
- }
- }
- e.SetProperty("HELPSTRING", helpString.c_str());
- if(cmCacheManager::ParseEntry(realbuffer, entryKey, e.Value, e.Type))
- {
- if ( excludes.find(entryKey) == excludes.end() )
- {
- // 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.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)
- {
- e.Type = INTERNAL;
- helpString = "DO NOT EDIT, ";
- helpString += entryKey;
- helpString += " loaded from external file. "
- "To change this value edit this file: ";
- helpString += path;
- helpString += "/CMakeCache.txt" ;
- e.SetProperty("HELPSTRING", helpString.c_str());
- }
- if(!this->ReadPropertyEntry(entryKey, e))
- {
- e.Initialized = true;
- this->Cache[entryKey] = e;
- }
- }
- }
- }
- else
- {
- cmSystemTools::Error("Parse error in cache file ", cacheFile.c_str(),
- ". Offending entry: ", realbuffer);
- }
- }
- this->CacheMajorVersion = 0;
- this->CacheMinorVersion = 0;
- if(const char* cmajor = this->GetCacheValue("CMAKE_CACHE_MAJOR_VERSION"))
- {
- 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
- 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);
- }
- // check to make sure the cache directory has not
- // been moved
- if ( internal && this->GetCacheValue("CMAKE_CACHEFILE_DIR") )
- {
- std::string currentcwd = path;
- std::string oldcwd = this->GetCacheValue("CMAKE_CACHEFILE_DIR");
- cmSystemTools::ConvertToUnixSlashes(currentcwd);
- currentcwd += "/CMakeCache.txt";
- oldcwd += "/CMakeCache.txt";
- if(!cmSystemTools::SameFile(oldcwd, currentcwd))
- {
- 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 CMakeCache.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());
- }
- }
- return true;
- }
- //----------------------------------------------------------------------------
- const char* cmCacheManager::PersistentProperties[] =
- {
- "ADVANCED",
- "MODIFIED",
- "STRINGS",
- 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];
- ne.Properties.SetCMakeInstance(this->CMakeInstance);
- 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";
- }
- }
- }
- bool cmCacheManager::SaveCache(cmMakefile* mf)
- {
- return this->SaveCache(mf->GetHomeOutputDirectory());
- }
- bool cmCacheManager::SaveCache(const std::string& path)
- {
- std::string cacheFile = path;
- cacheFile += "/CMakeCache.txt";
- cmGeneratedFileStream fout(cacheFile.c_str());
- fout.SetCopyIfDifferent(true);
- if(!fout)
- {
- cmSystemTools::Error("Unable to open cache file for save. ",
- cacheFile.c_str());
- cmSystemTools::ReportLastSystemError("");
- return false;
- }
- // before writing the cache, update the version numbers
- // to the
- char temp[1024];
- sprintf(temp, "%d", cmVersion::GetMinorVersion());
- this->AddCacheEntry("CMAKE_CACHE_MINOR_VERSION", temp,
- "Minor version of cmake used to create the "
- "current loaded cache", cmCacheManager::INTERNAL);
- sprintf(temp, "%d", cmVersion::GetMajorVersion());
- this->AddCacheEntry("CMAKE_CACHE_MAJOR_VERSION", temp,
- "Major version of cmake used to create the "
- "current loaded cache", cmCacheManager::INTERNAL);
- sprintf(temp, "%d", cmVersion::GetPatchVersion());
- this->AddCacheEntry("CMAKE_CACHE_PATCH_VERSION", temp,
- "Patch version of cmake used to create the "
- "current loaded cache", cmCacheManager::INTERNAL);
- // Let us store the current working directory so that if somebody
- // Copies it, he will not be surprised
- std::string currentcwd = path;
- if ( currentcwd[0] >= 'A' && currentcwd[0] <= 'Z' &&
- currentcwd[1] == ':' )
- {
- // 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');
- }
- cmSystemTools::ConvertToUnixSlashes(currentcwd);
- this->AddCacheEntry("CMAKE_CACHEFILE_DIR", currentcwd.c_str(),
- "This is the directory where this CMakeCache.txt"
- " was created", cmCacheManager::INTERNAL);
- fout << "# This is the CMakeCache file.\n"
- << "# For build in directory: " << currentcwd << "\n";
- cmCacheManager::CacheEntry* cmakeCacheEntry
- = this->GetCacheEntry("CMAKE_COMMAND");
- if ( cmakeCacheEntry )
- {
- fout << "# It was generated by CMake: " <<
- cmakeCacheEntry->Value << std::endl;
- }
- 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
- << "# The syntax for the file is as follows:\n"
- << "# KEY:TYPE=VALUE\n"
- << "# KEY is the name of a variable in the cache.\n"
- << "# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT "
- "TYPE!." << std::endl
- << "# VALUE is the current value for the KEY.\n\n";
- fout << "########################\n";
- fout << "# EXTERNAL cache entries\n";
- fout << "########################\n";
- fout << "\n";
- for( std::map<std::string, CacheEntry>::const_iterator i =
- this->Cache.begin(); i != this->Cache.end(); ++i)
- {
- const CacheEntry& ce = (*i).second;
- CacheEntryType t = ce.Type;
- if(!ce.Initialized)
- {
- /*
- // This should be added in, but is not for now.
- cmSystemTools::Error("Cache entry \"", (*i).first.c_str(),
- "\" is uninitialized");
- */
- }
- else if(t != INTERNAL)
- {
- // Format is key:type=value
- if(const char* help = ce.GetProperty("HELPSTRING"))
- {
- cmCacheManager::OutputHelpString(fout, help);
- }
- else
- {
- cmCacheManager::OutputHelpString(fout, "Missing description");
- }
- this->OutputKey(fout, i->first);
- fout << ":" << cmCacheManagerTypes[t] << "=";
- this->OutputValue(fout, ce.Value);
- fout << "\n\n";
- }
- }
- fout << "\n";
- fout << "########################\n";
- fout << "# INTERNAL cache entries\n";
- fout << "########################\n";
- fout << "\n";
- for( cmCacheManager::CacheIterator i = this->NewIterator();
- !i.IsAtEnd(); i.Next())
- {
- if ( !i.Initialized() )
- {
- continue;
- }
- CacheEntryType t = i.GetType();
- this->WritePropertyEntries(fout, i);
- if(t == cmCacheManager::INTERNAL)
- {
- // Format is key:type=value
- if(const char* help = i.GetProperty("HELPSTRING"))
- {
- this->OutputHelpString(fout, help);
- }
- this->OutputKey(fout, i.GetName());
- fout << ":" << cmCacheManagerTypes[t] << "=";
- this->OutputValue(fout, i.GetValue());
- fout << "\n";
- }
- }
- fout << "\n";
- fout.Close();
- std::string checkCacheFile = path;
- checkCacheFile += cmake::GetCMakeFilesDirectory();
- cmSystemTools::MakeDirectory(checkCacheFile.c_str());
- checkCacheFile += "/cmake.check_cache";
- cmsys::ofstream checkCache(checkCacheFile.c_str());
- if(!checkCache)
- {
- cmSystemTools::Error("Unable to open check cache file for write. ",
- checkCacheFile.c_str());
- return false;
- }
- checkCache << "# This file is generated by cmake for dependency checking "
- "of the CMakeCache.txt file\n";
- return true;
- }
- bool cmCacheManager::DeleteCache(const std::string& path)
- {
- std::string cacheFile = path;
- cmSystemTools::ConvertToUnixSlashes(cacheFile);
- std::string cmakeFiles = cacheFile;
- cacheFile += "/CMakeCache.txt";
- if(cmSystemTools::FileExists(cacheFile.c_str()))
- {
- cmSystemTools::RemoveFile(cacheFile);
- // now remove the files in the CMakeFiles directory
- // this cleans up language cache files
- cmakeFiles += cmake::GetCMakeFilesDirectory();
- if(cmSystemTools::FileIsDirectory(cmakeFiles))
- {
- cmSystemTools::RemoveADirectory(cmakeFiles);
- }
- }
- return true;
- }
- 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.empty() &&
- (value[value.size() - 1] == ' ' ||
- value[value.size() - 1] == '\t'))
- {
- fout << '\'' << value << '\'';
- }
- else
- {
- fout << value;
- }
- }
- void cmCacheManager::OutputHelpString(std::ostream& fout,
- const std::string& helpString)
- {
- std::string::size_type end = helpString.size();
- if(end == 0)
- {
- return;
- }
- std::string oneLine;
- std::string::size_type pos = 0;
- for (std::string::size_type i=0; i<=end; i++)
- {
- if ((i==end)
- || (helpString[i]=='\n')
- || ((i-pos >= 60) && (helpString[i]==' ')))
- {
- fout << "//";
- if (helpString[pos] == '\n')
- {
- pos++;
- fout << "\\n";
- }
- oneLine = helpString.substr(pos, i - pos);
- fout << oneLine << "\n";
- pos = i;
- }
- }
- }
- void cmCacheManager::RemoveCacheEntry(const std::string& key)
- {
- CacheEntryMap::iterator i = this->Cache.find(key);
- if(i != this->Cache.end())
- {
- this->Cache.erase(i);
- }
- }
- cmCacheManager::CacheEntry *cmCacheManager::GetCacheEntry(
- const std::string& key)
- {
- CacheEntryMap::iterator i = this->Cache.find(key);
- if(i != this->Cache.end())
- {
- return &i->second;
- }
- return 0;
- }
- cmCacheManager::CacheIterator cmCacheManager::GetCacheIterator(
- const char *key)
- {
- return CacheIterator(*this, key);
- }
- const char* cmCacheManager::GetCacheValue(const std::string& key) const
- {
- CacheEntryMap::const_iterator i = this->Cache.find(key);
- if(i != this->Cache.end() &&
- i->second.Initialized)
- {
- return i->second.Value.c_str();
- }
- return 0;
- }
- void cmCacheManager::PrintCache(std::ostream& out) const
- {
- out << "=================================================" << std::endl;
- out << "CMakeCache Contents:" << std::endl;
- for(std::map<std::string, CacheEntry>::const_iterator i =
- this->Cache.begin(); i != this->Cache.end(); ++i)
- {
- if((*i).second.Type != INTERNAL)
- {
- out << (*i).first << " = " << (*i).second.Value
- << std::endl;
- }
- }
- out << "\n\n";
- out << "To change values in the CMakeCache, "
- << std::endl << "edit CMakeCache.txt in your output directory.\n";
- out << "=================================================" << std::endl;
- }
- void cmCacheManager::AddCacheEntry(const std::string& key,
- const char* value,
- const char* helpString,
- CacheEntryType type)
- {
- CacheEntry& e = this->Cache[key];
- e.Properties.SetCMakeInstance(this->CMakeInstance);
- if ( value )
- {
- e.Value = value;
- e.Initialized = true;
- }
- else
- {
- e.Value = "";
- }
- e.Type = type;
- // make sure we only use unix style paths
- if(type == FILEPATH || type == PATH)
- {
- if(e.Value.find(';') != e.Value.npos)
- {
- std::vector<std::string> paths;
- cmSystemTools::ExpandListArgument(e.Value, paths);
- const char* sep = "";
- e.Value = "";
- 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);
- }
- }
- e.SetProperty("HELPSTRING", helpString? helpString :
- "(This variable does not exist and should not be used)");
- this->CMakeInstance->UnwatchUnusedCli(key);
- }
- bool cmCacheManager::CacheIterator::IsAtEnd() const
- {
- return this->Position == this->Container.Cache.end();
- }
- void cmCacheManager::CacheIterator::Begin()
- {
- this->Position = this->Container.Cache.begin();
- }
- bool cmCacheManager::CacheIterator::Find(const std::string& key)
- {
- this->Position = this->Container.Cache.find(key);
- return !this->IsAtEnd();
- }
- void cmCacheManager::CacheIterator::Next()
- {
- if (!this->IsAtEnd())
- {
- ++this->Position;
- }
- }
- void cmCacheManager::CacheIterator::SetValue(const char* value)
- {
- if (this->IsAtEnd())
- {
- return;
- }
- CacheEntry* entry = &this->GetEntry();
- if ( value )
- {
- entry->Value = value;
- entry->Initialized = true;
- }
- else
- {
- entry->Value = "";
- }
- }
- //----------------------------------------------------------------------------
- bool cmCacheManager::CacheIterator::GetValueAsBool() const
- {
- return cmSystemTools::IsOn(this->GetEntry().Value.c_str());
- }
- //----------------------------------------------------------------------------
- const char*
- cmCacheManager::CacheEntry::GetProperty(const std::string& prop) const
- {
- if(prop == "TYPE")
- {
- return cmCacheManagerTypes[this->Type];
- }
- else if(prop == "VALUE")
- {
- return this->Value.c_str();
- }
- bool c = false;
- return
- this->Properties.GetPropertyValue(prop, cmProperty::CACHE, c);
- }
- //----------------------------------------------------------------------------
- void cmCacheManager::CacheEntry::SetProperty(const std::string& prop,
- const char* value)
- {
- if(prop == "TYPE")
- {
- this->Type = cmCacheManager::StringToType(value? value : "STRING");
- }
- else if(prop == "VALUE")
- {
- this->Value = value? value : "";
- }
- else
- {
- this->Properties.SetProperty(prop, value, cmProperty::CACHE);
- }
- }
- //----------------------------------------------------------------------------
- void cmCacheManager::CacheEntry::AppendProperty(const std::string& prop,
- const char* value,
- bool asString)
- {
- if(prop == "TYPE")
- {
- this->Type = cmCacheManager::StringToType(value? value : "STRING");
- }
- else if(prop == "VALUE")
- {
- if(value)
- {
- if(!this->Value.empty() && *value && !asString)
- {
- this->Value += ";";
- }
- this->Value += value;
- }
- }
- else
- {
- this->Properties.AppendProperty(prop, value, cmProperty::CACHE, asString);
- }
- }
- //----------------------------------------------------------------------------
- const char* cmCacheManager::CacheIterator::GetProperty(
- const std::string& prop) const
- {
- if(!this->IsAtEnd())
- {
- return this->GetEntry().GetProperty(prop);
- }
- return 0;
- }
- //----------------------------------------------------------------------------
- void cmCacheManager::CacheIterator::SetProperty(const std::string& p,
- const char* v)
- {
- if(!this->IsAtEnd())
- {
- this->GetEntry().SetProperty(p, v);
- }
- }
- //----------------------------------------------------------------------------
- void cmCacheManager::CacheIterator::AppendProperty(const std::string& p,
- const char* v,
- bool asString)
- {
- if(!this->IsAtEnd())
- {
- this->GetEntry().AppendProperty(p, v, asString);
- }
- }
- //----------------------------------------------------------------------------
- bool cmCacheManager::CacheIterator::GetPropertyAsBool(
- const std::string& prop) const
- {
- if(const char* value = this->GetProperty(prop))
- {
- return cmSystemTools::IsOn(value);
- }
- return false;
- }
- //----------------------------------------------------------------------------
- void cmCacheManager::CacheIterator::SetProperty(const std::string& p, bool v)
- {
- this->SetProperty(p, v ? "ON" : "OFF");
- }
- //----------------------------------------------------------------------------
- bool cmCacheManager::CacheIterator::PropertyExists(
- const std::string& prop) const
- {
- return this->GetProperty(prop)? true:false;
- }
- //----------------------------------------------------------------------------
- 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.
- cmIML_INT_uint64_t actual_compat =
- CMake_VERSION_ENCODE(this->CacheMajorVersion, this->CacheMinorVersion, 0);
- return (actual_compat &&
- actual_compat <= CMake_VERSION_ENCODE(major, minor, 0));
- }
|