123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- /*=========================================================================
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2001 Insight Consortium
- All rights reserved.
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
- * Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
- * The name of the Insight Consortium, nor the names of any consortium members,
- nor of any contributors, may be used to endorse or promote products derived
- from this software without specific prior written permission.
- * Modified source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- =========================================================================*/
- #include "cmCacheManager.h"
- #include "cmSystemTools.h"
- #include "cmCacheManager.h"
- #include "cmMakefile.h"
- #include "cmRegularExpression.h"
- const char* cmCacheManagerTypes[] =
- { "BOOL",
- "PATH",
- "FILEPATH",
- "STRING",
- "INTERNAL",
- 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;
- }
-
- cmCacheManager* cmCacheManager::s_Instance = 0;
- cmCacheManager* cmCacheManager::GetInstance()
- {
- if(!cmCacheManager::s_Instance)
- {
- 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)
- {
- std::string cacheFile = path;
- cacheFile += "/CMakeCache.txt";
- // clear the old cache
- m_Cache.clear();
- std::ifstream fin(cacheFile.c_str());
- if(!fin)
- {
- return false;
- }
- const int bsize = 4096;
- char buffer[bsize];
- // input line is: key:type=value
- cmRegularExpression reg("(.*):(.*)=(.*)");
- while(fin)
- {
- // Format is key:type=value
- CacheEntry e;
- fin.getline(buffer, bsize);
- // skip blank lines and comment lines
- if(buffer[0] == '#' || buffer[0] == 0)
- {
- continue;
- }
- while(buffer[0] == '/')
- {
- e.m_HelpString += &buffer[2];
- fin.getline(buffer, bsize);
- if(!fin)
- {
- continue;
- }
- }
- if(reg.find(buffer))
- {
- e.m_Type = cmCacheManager::StringToType(reg.match(2).c_str());
- e.m_Value = reg.match(3);
- m_Cache[reg.match(1)] = e;
- }
- else
- {
- cmSystemTools::Error("Parse error in cache file ", cacheFile.c_str());
- }
- }
- return true;
- }
- void cmCacheManager::DefineCache(cmMakefile *mf)
- {
- if (!mf)
- {
- return;
- }
-
- // add definition to the makefile
- for( std::map<std::string, 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) const
- {
- return this->SaveCache(mf->GetHomeOutputDirectory());
- }
- bool cmCacheManager::SaveCache(const char* path) const
- {
- 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;
- }
- fout << "# This is the CMakeCache file.\n"
- << "# For build in directory: " << path << "\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";
- for( std::map<std::string, CacheEntry>::const_iterator i = m_Cache.begin();
- i != m_Cache.end(); ++i)
- {
- const CacheEntry& ce = (*i).second;
- CacheEntryType t = ce.m_Type;
- // Format is key:type=value
- cmCacheManager::OutputHelpString(fout, ce.m_HelpString);
- fout << (*i).first.c_str() << ":"
- << cmCacheManagerTypes[t] << "="
- << ce.m_Value << "\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)
- {
- m_Cache.erase(key);
- }
- 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;
- }
- bool cmCacheManager::IsOn(const char* key) const
- {
- if(!m_Cache.count(key))
- {
- return false;
- }
- const std::string &v = m_Cache.find(key)->second.m_Value;
- return cmSystemTools::IsOn(v.c_str());
- }
- void cmCacheManager::PrintCache(std::ostream& out) const
- {
- out << "=================================================" << std::endl;
- out << "CMakeCache Contents:" << std::endl;
- for(std::map<std::string, CacheEntry>::const_iterator i = m_Cache.begin();
- i != m_Cache.end(); ++i)
- {
- 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);
- }
- }
|