123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551 |
- /*=========================================================================
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Insight Consortium. All rights reserved.
- See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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 "cmRegularExpression.h"
- #include "stdio.h"
- #if defined(_WIN32) || defined(__CYGWIN__)
- # include <windows.h>
- #endif // _WIN32
- const char* cmCacheManagerTypes[] =
- { "BOOL",
- "PATH",
- "FILEPATH",
- "STRING",
- "INTERNAL",
- "STATIC",
- 0
- };
- 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;
- }
-
- struct CleanUpCacheManager
- {
- ~CleanUpCacheManager()
- {
- delete cmCacheManager::GetInstance();
- }
- void Use() {}
- };
- CleanUpCacheManager cleanup;
- cmCacheManager* cmCacheManager::s_Instance = 0;
- cmCacheManager* cmCacheManager::GetInstance()
- {
- if(!cmCacheManager::s_Instance)
- {
- cleanup.Use();
- cmCacheManager::s_Instance = new cmCacheManager;
- }
- return cmCacheManager::s_Instance;
- }
- 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<std::string> emptySet;
- return this->LoadCache(path, internal, emptySet, emptySet);
- }
- bool cmCacheManager::ParseEntry(const char* entry,
- std::string& var,
- std::string& value,
- CacheEntryType& type)
- {
- // input line is: key:type=value
- cmRegularExpression reg("^([^:]*):([^=]*)=(.*[^\t ]|[\t ]*)[\t ]*$");
- // input line is: "key":type=value
- cmRegularExpression regQuoted("^\"([^\"]*)\":([^=]*)=(.*[^\t ]|[\t ]*)[\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;
- }
- bool cmCacheManager::LoadCache(const char* 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 )
- {
- m_Cache.clear();
- }
- std::ifstream fin(cacheFile.c_str());
- if(!fin)
- {
- return false;
- }
- const int bsize = 4096;
- char buffer[bsize];
- char *realbuffer;
- // input line is: key:type=value
- cmRegularExpression reg("^([^:]*):([^=]*)=(.*[^\t ]|[\t ]*)[\t ]*$");
- // input line is: "key":type=value
- cmRegularExpression regQuoted("^\"([^\"]*)\":([^=]*)=(.*[^\t ]|[\t ]*)[\t ]*$");
- std::string entryKey;
- while(fin)
- {
- // Format is key:type=value
- CacheEntry e;
- fin.getline(buffer, bsize);
- realbuffer = buffer;
- while(*realbuffer != '0' &&
- (*realbuffer == ' ' ||
- *realbuffer == '\t' ||
- *realbuffer == '\n'))
- {
- realbuffer++;
- }
- // skip blank lines and comment lines
- if(realbuffer[0] == '#' || realbuffer[0] == 0)
- {
- continue;
- }
- while(realbuffer[0] == '/' && realbuffer[1] == '/')
- {
- e.m_HelpString += &realbuffer[2];
- fin.getline(realbuffer, bsize);
- if(!fin)
- {
- continue;
- }
- }
- if(cmCacheManager::ParseEntry(realbuffer, entryKey, e.m_Value, e.m_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.m_Type != INTERNAL) ||
- (includes.find(entryKey) != includes.end()) )
- {
- // If we are loading the cache from another project,
- // make all loaded entries internal so that it is
- // not visible in the gui
- if (!internal)
- {
- e.m_Type = INTERNAL;
- e.m_HelpString = "DO NOT EDIT, ";
- e.m_HelpString += entryKey;
- e.m_HelpString += " loaded from external file. "
- "To change this value edit this file: ";
- e.m_HelpString += path;
- e.m_HelpString += "/CMakeCache.txt" ;
- }
- m_Cache[entryKey] = e;
- }
- }
- }
- else
- {
- cmSystemTools::Error("Parse error in cache file ", cacheFile.c_str(),
- ". Offending entry: ", realbuffer);
- }
- }
- // if CMAKE version not found in the list file
- // add them as version 0.0
- if(!this->GetCacheValue("CMAKE_CACHE_MINOR_VERSION"))
- {
- this->AddCacheEntry("CMAKE_CACHE_MINOR_VERSION", "0",
- "Minor version of cmake used to create the "
- "current loaded cache", cmCacheManager::INTERNAL);
- this->AddCacheEntry("CMAKE_CACHE_MAJOR_VERSION", "0",
- "Major version of cmake used to create the "
- "current loaded cache", cmCacheManager::INTERNAL);
-
- }
- // 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;
- }
- void cmCacheManager::DefineCache(cmMakefile *mf)
- {
- if (!mf)
- {
- return;
- }
-
- // add definition to the makefile
- for( std::map<cmStdString, CacheEntry>::const_iterator i = m_Cache.begin();
- i != m_Cache.end(); ++i)
- {
- const CacheEntry& ce = (*i).second;
- mf->AddDefinition((*i).first.c_str(), ce.m_Value.c_str());
- }
- }
- 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());
- return false;
- }
- // before writting the cache, update the version numbers
- // to the
- char temp[1024];
- sprintf(temp, "%d", cmMakefile::GetMinorVersion());
- this->AddCacheEntry("CMAKE_CACHE_MINOR_VERSION", temp,
- "Minor version of cmake used to create the "
- "current loaded cache", cmCacheManager::INTERNAL);
- sprintf(temp, "%d", cmMakefile::GetMajorVersion());
- this->AddCacheEntry("CMAKE_CACHE_MAJOR_VERSION", temp,
- "Major version of cmake used to create the "
- "current loaded cache", cmCacheManager::INTERNAL);
- // 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"
- << "# You can edit this file to change values found and used by cmake.\n"
- << "# If you do not want to change any of the values, simply exit the editor.\n"
- << "# If you do want to change a value, simply edit, save, and exit the editor.\n"
- << "# The syntax for the file is as follows:\n"
- << "# KEY:TYPE=VALUE\n"
- << "# KEY is the name of a varible in the cache.\n"
- << "# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!.\n"
- << "# VALUE is the current value for the KEY.\n\n";
- fout << "########################\n";
- fout << "# EXTERNAL cache entries\n";
- fout << "########################\n";
- fout << "\n";
- for( std::map<cmStdString, CacheEntry>::const_iterator i = m_Cache.begin();
- i != m_Cache.end(); ++i)
- {
- const CacheEntry& ce = (*i).second;
- CacheEntryType t = ce.m_Type;
- if(t != INTERNAL)
- {
- // Format is key:type=value
- cmCacheManager::OutputHelpString(fout, ce.m_HelpString);
- 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.m_Value.size() &&
- (ce.m_Value[ce.m_Value.size() - 1] == ' ' ||
- ce.m_Value[ce.m_Value.size() - 1] == '\t'))
- {
- fout << '\'' << ce.m_Value << '\'';
- }
- else
- {
- fout << ce.m_Value;
- }
- fout << "\n\n";
- }
- }
- fout << "\n";
- fout << "########################\n";
- fout << "# INTERNAL cache entries\n";
- fout << "########################\n";
- fout << "\n";
- for( std::map<cmStdString, CacheEntry>::const_iterator i = m_Cache.begin();
- i != m_Cache.end(); ++i)
- {
- const CacheEntry& ce = (*i).second;
- CacheEntryType t = ce.m_Type;
- if(t == INTERNAL)
- {
- // Format is key:type=value
- cmCacheManager::OutputHelpString(fout, ce.m_HelpString);
- 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.m_Value.size() &&
- (ce.m_Value[ce.m_Value.size() - 1] == ' ' ||
- ce.m_Value[ce.m_Value.size() - 1] == '\t'))
- {
- fout << '\'' << ce.m_Value << '\'';
- }
- else
- {
- fout << ce.m_Value;
- }
- fout << "\n";
- }
- }
- fout << "\n";
- fout.close();
- cmSystemTools::CopyFileIfDifferent(tempFile.c_str(),
- cacheFile.c_str());
- cmSystemTools::RemoveFile(tempFile.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;
- std::string::size_type nextBreak = 60;
- bool done = false;
- while(!done)
- {
- if(nextBreak >= end)
- {
- nextBreak = end;
- done = true;
- }
- else
- {
- while(nextBreak < end && helpString[nextBreak] != ' ')
- {
- nextBreak++;
- }
- }
- oneLine = helpString.substr(pos, nextBreak - pos);
- fout << "//" << oneLine.c_str() << "\n";
- pos = nextBreak;
- nextBreak += 60;
- }
- }
- void cmCacheManager::RemoveCacheEntry(const char* key)
- {
- if(m_Cache.count(key))
- {
- m_Cache.erase(key);
- }
- else
- {
- std::cerr << "Failed to remove entry" << std::endl;
- }
- }
- cmCacheManager::CacheEntry *cmCacheManager::GetCacheEntry(const char* key)
- {
- if(m_Cache.count(key))
- {
- return &(m_Cache.find(key)->second);
- }
- return 0;
- }
- const char* cmCacheManager::GetCacheValue(const char* key) const
- {
- if(m_Cache.count(key))
- {
- return m_Cache.find(key)->second.m_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 = m_Cache.begin();
- i != m_Cache.end(); ++i)
- {
- if((*i).second.m_Type != INTERNAL)
- {
- out << (*i).first.c_str() << " = " << (*i).second.m_Value.c_str() << std::endl;
- }
- }
- out << "\n\n";
- out << "To change values in the CMakeCache, \nedit 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;
- e.m_Value = value;
- e.m_Type = type;
- // make sure we only use unix style paths
- if(type == FILEPATH || type == PATH)
- {
- cmSystemTools::ConvertToUnixSlashes(e.m_Value);
- }
- e.m_HelpString = helpString;
- m_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::IsAdvanced(const char* key)
- {
- std::string advancedVar = key;
- advancedVar += "-ADVANCED";
- const char* value =
- cmCacheManager::GetInstance()->GetCacheValue(advancedVar.c_str());
- if(value)
- {
- return cmSystemTools::IsOn(value);
- }
- return false;
- }
|