| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- 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.
- =========================================================================*/
- #include "cmCacheManager.h"
- #include "cmSystemTools.h"
- #include "cmCacheManager.h"
- #include "cmMakefile.h"
- #include "cmake.h"
- #include "cmVersion.h"
- #include <cmsys/Directory.hxx>
- #include <cmsys/Glob.hxx>
- #include <cmsys/RegularExpression.hxx>
- #if defined(_WIN32) || defined(__CYGWIN__)
- # include <windows.h>
- #endif // _WIN32
- const char* cmCacheManagerTypes[] =
- { "BOOL",
- "PATH",
- "FILEPATH",
- "STRING",
- "INTERNAL",
- "STATIC",
- "UNINITIALIZED",
- 0
- };
- cmCacheManager::cmCacheManager()
- {
- this->CacheMajorVersion = 0;
- this->CacheMinorVersion = 0;
- }
- 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::LoadCache(cmMakefile* mf)
- {
- return this->LoadCache(mf->GetHomeOutputDirectory());
- }
- bool cmCacheManager::LoadCache(const char* path)
- {
- return this->LoadCache(path,true);
- }
- bool cmCacheManager::LoadCache(const char* path,
- bool internal)
- {
- std::set<cmStdString> emptySet;
- return this->LoadCache(path, internal, emptySet, emptySet);
- }
- bool cmCacheManager::ParseEntry(const char* entry,
- std::string& var,
- std::string& value)
- {
- // 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);
- 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 char* 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);
- }
- return flag;
- }
- void cmCacheManager::CleanCMakeFiles(const char* 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->c_str());
- }
- }
- bool cmCacheManager::LoadCache(const char* path,
- bool internal,
- std::set<cmStdString>& excludes,
- std::set<cmStdString>& 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;
- }
- std::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
- CacheEntry e;
- 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'))
- {
- e.Properties["HELPSTRING"] += "\n";
- e.Properties["HELPSTRING"] += &realbuffer[4];
- }
- else
- {
- e.Properties["HELPSTRING"] += &realbuffer[2];
- }
- cmSystemTools::GetLineFromStream(fin, buffer);
- realbuffer = buffer.c_str();
- if(!fin)
- {
- continue;
- }
- }
- 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;
- e.Properties["HELPSTRING"] = "DO NOT EDIT, ";
- e.Properties["HELPSTRING"] += entryKey;
- e.Properties["HELPSTRING"] += " loaded from external file. "
- "To change this value edit this file: ";
- e.Properties["HELPSTRING"] += path;
- e.Properties["HELPSTRING"] += "/CMakeCache.txt" ;
- }
- if ( e.Type == cmCacheManager::INTERNAL &&
- (entryKey.size() > strlen("-ADVANCED")) &&
- strcmp(entryKey.c_str() + (entryKey.size() -
- strlen("-ADVANCED")), "-ADVANCED") == 0 )
- {
- std::string value = e.Value;
- std::string akey =
- entryKey.substr(0, (entryKey.size() - strlen("-ADVANCED")));
- cmCacheManager::CacheIterator it =
- this->GetCacheIterator(akey.c_str());
- if ( it.IsAtEnd() )
- {
- e.Type = cmCacheManager::UNINITIALIZED;
- this->Cache[akey] = e;
- }
- if (!it.Find(akey.c_str()))
- {
- cmSystemTools::Error("Internal CMake error when reading cache");
- }
- it.SetProperty("ADVANCED", value.c_str());
- }
- else if ( e.Type == cmCacheManager::INTERNAL &&
- (entryKey.size() > strlen("-MODIFIED")) &&
- strcmp(entryKey.c_str() + (entryKey.size() -
- strlen("-MODIFIED")), "-MODIFIED") == 0 )
- {
- std::string value = e.Value;
- std::string akey =
- entryKey.substr(0, (entryKey.size() - strlen("-MODIFIED")));
- cmCacheManager::CacheIterator it =
- this->GetCacheIterator(akey.c_str());
- if ( it.IsAtEnd() )
- {
- e.Type = cmCacheManager::UNINITIALIZED;
- this->Cache[akey] = e;
- }
- if (!it.Find(akey.c_str()))
- {
- cmSystemTools::Error("Internal CMake error when reading cache");
- }
- it.SetProperty("MODIFIED", value.c_str());
- }
- else
- {
- 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.c_str(), currentcwd.c_str()))
- {
- 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());
- }
- }
- return true;
- }
- bool cmCacheManager::SaveCache(cmMakefile* mf)
- {
- return this->SaveCache(mf->GetHomeOutputDirectory());
- }
- bool cmCacheManager::SaveCache(const char* path)
- {
- std::string cacheFile = path;
- cacheFile += "/CMakeCache.txt";
- std::string tempFile = cacheFile;
- tempFile += ".tmp";
- std::ofstream fout(tempFile.c_str());
- 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);
- this->AddCacheEntry("CMAKE_CACHE_RELEASE_VERSION",
- cmVersion::GetReleaseVersion().c_str(),
- "Major 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] == ':' )
- {
- currentcwd[0] = currentcwd[0] - 'A' + 'a';
- }
- cmSystemTools::ConvertToUnixSlashes(currentcwd);
- this->AddCacheEntry("CMAKE_CACHEFILE_DIR", currentcwd.c_str(),
- "This is the directory where this CMakeCahe.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 GUI's 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<cmStdString, 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
- std::map<cmStdString,cmStdString>::const_iterator it =
- ce.Properties.find("HELPSTRING");
- if ( it == ce.Properties.end() )
- {
- cmCacheManager::OutputHelpString(fout, "Missing description");
- }
- else
- {
- cmCacheManager::OutputHelpString(fout, it->second);
- }
- std::string key;
- // support : in key name by double quoting
- if((*i).first.find(':') != std::string::npos ||
- (*i).first.find("//") == 0)
- {
- key = "\"";
- key += i->first;
- key += "\"";
- }
- else
- {
- key = i->first;
- }
- fout << key.c_str() << ":"
- << cmCacheManagerTypes[t] << "=";
- // if value has trailing space or tab, enclose it in single quotes
- if (ce.Value.size() &&
- (ce.Value[ce.Value.size() - 1] == ' ' ||
- ce.Value[ce.Value.size() - 1] == '\t'))
- {
- fout << '\'' << ce.Value << '\'';
- }
- else
- {
- 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();
- bool advanced = i.PropertyExists("ADVANCED");
- if ( advanced )
- {
- // 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 = "Advanced flag for variable: ";
- helpstring += i.GetName();
- rkey += "-ADVANCED";
- 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("ADVANCED") ? "1" : "0") << "\n";
- }
- 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";
- }
- if(t == cmCacheManager::INTERNAL)
- {
- // Format is key:type=value
- std::string key;
- std::string rkey = i.GetName();
- std::string helpstring;
- const char* hs = i.GetProperty("HELPSTRING");
- if ( hs )
- {
- helpstring = i.GetProperty("HELPSTRING");
- }
- else
- {
- helpstring = "";
- }
- 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() << ":"
- << cmCacheManagerTypes[t] << "=";
- // if value has trailing space or tab, enclose it in single quotes
- std::string value = i.GetValue();
- if (value.size() &&
- (value[value.size() - 1] == ' ' ||
- value[value.size() - 1] == '\t'))
- {
- fout << '\'' << value << '\'';
- }
- else
- {
- fout << value;
- }
- fout << "\n";
- }
- }
- fout << "\n";
- fout.close();
- cmSystemTools::CopyFileIfDifferent(tempFile.c_str(),
- cacheFile.c_str());
- cmSystemTools::RemoveFile(tempFile.c_str());
- std::string checkCacheFile = path;
- checkCacheFile += cmake::GetCMakeFilesDirectory();
- cmSystemTools::MakeDirectory(checkCacheFile.c_str());
- 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;
- }
- checkCache << "# This file is generated by cmake for dependency checking "
- "of the CMakeCache.txt file\n";
- return true;
- }
- bool cmCacheManager::DeleteCache(const char* path)
- {
- std::string cacheFile = path;
- cmSystemTools::ConvertToUnixSlashes(cacheFile);
- std::string cmakeFiles = cacheFile;
- cacheFile += "/CMakeCache.txt";
- cmSystemTools::RemoveFile(cacheFile.c_str());
- // now remove the files in the CMakeFiles directory
- // this cleans up language cache files
- cmsys::Directory dir;
- cmakeFiles += cmake::GetCMakeFilesDirectory();
- dir.Load(cmakeFiles.c_str());
- for (unsigned long fileNum = 0;
- fileNum < dir.GetNumberOfFiles();
- ++fileNum)
- {
- if(!cmSystemTools::
- FileIsDirectory(dir.GetFile(fileNum)))
- {
- std::string fullPath = cmakeFiles;
- fullPath += "/";
- fullPath += dir.GetFile(fileNum);
- cmSystemTools::RemoveFile(fullPath.c_str());
- }
- }
- return true;
- }
- void cmCacheManager::OutputHelpString(std::ofstream& 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.c_str() << "\n";
- pos = i;
- }
- }
- }
- void cmCacheManager::RemoveCacheEntry(const char* key)
- {
- CacheEntryMap::iterator i = this->Cache.find(key);
- if(i != this->Cache.end())
- {
- this->Cache.erase(i);
- }
- }
- cmCacheManager::CacheEntry *cmCacheManager::GetCacheEntry(const char* 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 char* 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<cmStdString, CacheEntry>::const_iterator i =
- this->Cache.begin(); i != this->Cache.end(); ++i)
- {
- if((*i).second.Type != INTERNAL)
- {
- out << (*i).first.c_str() << " = " << (*i).second.Value.c_str()
- << 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 char* key,
- const char* value,
- const char* helpString,
- CacheEntryType type)
- {
- CacheEntry& e = this->Cache[key];
- 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);
- }
- }
- if ( helpString )
- {
- e.Properties["HELPSTRING"] = helpString;
- }
- else
- {
- e.Properties["HELPSTRING"] =
- "(This variable does not exist and should not be used)";
- }
- this->Cache[key] = e;
- }
- void cmCacheManager::AddCacheEntry(const char* key, bool v,
- const char* helpString)
- {
- if(v)
- {
- this->AddCacheEntry(key, "ON", helpString, cmCacheManager::BOOL);
- }
- else
- {
- this->AddCacheEntry(key, "OFF", helpString, cmCacheManager::BOOL);
- }
- }
- 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 char* 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 = "";
- }
- }
- const char* cmCacheManager::CacheIterator::GetProperty(
- const char* property) const
- {
- // make sure it is not at the end
- if (this->IsAtEnd())
- {
- return 0;
- }
- if ( !strcmp(property, "TYPE") || !strcmp(property, "VALUE") )
- {
- 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->Properties.find(property);
- if ( it == ent->Properties.end() )
- {
- return 0;
- }
- return it->second.c_str();
- }
- void cmCacheManager::CacheIterator::SetProperty(const char* p, const char* v)
- {
- // make sure it is not at the end
- if (this->IsAtEnd())
- {
- return;
- }
- if ( !strcmp(p, "TYPE") || !strcmp(p, "VALUE") )
- {
- cmSystemTools::Error("Property \"", p,
- "\" cannot be accessed through the SetProperty()");
- return;
- }
- CacheEntry* ent = &this->GetEntry();
- ent->Properties[p] = v;
- }
- bool cmCacheManager::CacheIterator::GetValueAsBool() const
- {
- return cmSystemTools::IsOn(this->GetEntry().Value.c_str());
- }
- bool cmCacheManager::CacheIterator::GetPropertyAsBool(
- const char* property) const
- {
- // make sure it is not at the end
- if (this->IsAtEnd())
- {
- return false;
- }
- if ( !strcmp(property, "TYPE") || !strcmp(property, "VALUE") )
- {
- 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->Properties.find(property);
- if ( it == ent->Properties.end() )
- {
- return false;
- }
- return cmSystemTools::IsOn(it->second.c_str());
- }
- void cmCacheManager::CacheIterator::SetProperty(const char* p, bool v)
- {
- // make sure it is not at the end
- if (this->IsAtEnd())
- {
- return;
- }
- if ( !strcmp(p, "TYPE") || !strcmp(p, "VALUE") )
- {
- cmSystemTools::Error("Property \"", p,
- "\" cannot be accessed through the SetProperty()");
- return;
- }
- CacheEntry* ent = &this->GetEntry();
- ent->Properties[p] = v ? "ON" : "OFF";
- }
- bool cmCacheManager::CacheIterator::PropertyExists(const char* property) const
- {
- // make sure it is not at the end
- if (this->IsAtEnd())
- {
- return false;
- }
- 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->Properties.find(property);
- if ( it == ent->Properties.end() )
- {
- return false;
- }
- return true;
- }
- //----------------------------------------------------------------------------
- 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.
- unsigned int actual_compat =
- CMake_VERSION_ENCODE(this->CacheMajorVersion, this->CacheMinorVersion, 0);
- return (actual_compat &&
- actual_compat <= CMake_VERSION_ENCODE(major, minor, 0));
- }
|