CMake/Source/cmCacheManager.cxx

274 lines
6.5 KiB
C++
Raw Normal View History

/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2000 National Library of Medicine
All rights reserved.
See COPYRIGHT.txt for copyright details.
=========================================================================*/
#include "cmCacheManager.h"
#include "cmSystemTools.h"
#include "cmCacheManager.h"
#include "cmMakefile.h"
2001-02-23 03:24:43 +03:00
#include "cmRegularExpression.h"
const char* cmCacheManagerTypes[] =
{ "BOOL",
"PATH",
"FILEPATH",
"STRING",
2001-04-12 23:34:09 +04:00
"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];
2001-02-23 03:24:43 +03:00
// input line is: key:type=value
cmRegularExpression reg("(.*):(.*)=(.*)");
while(fin)
{
// Format is key:type=value
CacheEntry e;
2001-02-23 03:24:43 +03:00
fin.getline(buffer, bsize);
// skip blank lines and comment lines
if(buffer[0] == '#' || buffer[0] == 0)
{
2001-02-23 03:24:43 +03:00
continue;
}
2001-04-26 22:53:44 +04:00
while(buffer[0] == '/')
{
e.m_HelpString += &buffer[2];
fin.getline(buffer, bsize);
if(!fin)
{
continue;
}
}
2001-02-23 03:24:43 +03:00
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;
}
2001-04-25 00:49:12 +04:00
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";
2001-02-23 03:24:43 +03:00
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;
}
2001-02-23 03:24:43 +03:00
fout << "# This is the CMakeCache file.\n"
<< "# For build in directory: " << path << "\n"
2001-02-23 03:24:43 +03:00
<< "# 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";
2001-04-25 00:49:12 +04:00
for( std::map<std::string, CacheEntry>::const_iterator i = m_Cache.begin();
i != m_Cache.end(); ++i)
{
2001-04-26 22:53:44 +04:00
const CacheEntry& ce = (*i).second;
CacheEntryType t = ce.m_Type;
// Format is key:type=value
2001-04-26 22:53:44 +04:00
cmCacheManager::OutputHelpString(fout, ce.m_HelpString);
fout << (*i).first.c_str() << ":"
<< cmCacheManagerTypes[t] << "="
2001-04-26 22:53:44 +04:00
<< ce.m_Value << "\n";
}
fout << "\n";
2001-02-23 03:24:43 +03:00
fout.close();
cmSystemTools::CopyFileIfDifferent(tempFile.c_str(),
cacheFile.c_str());
cmSystemTools::RemoveFile(tempFile.c_str());
return true;
}
2001-04-26 22:53:44 +04:00
void cmCacheManager::OutputHelpString(std::ofstream& fout,
const std::string& helpString)
{
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;
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;
}
}
2001-04-26 22:53:44 +04:00
void cmCacheManager::RemoveCacheEntry(const char* key)
{
2001-04-26 22:53:44 +04:00
m_Cache.erase(key);
}
2001-04-26 22:53:44 +04:00
2001-04-25 00:49:12 +04:00
cmCacheManager::CacheEntry *cmCacheManager::GetCacheEntry(const char* key)
{
if(m_Cache.count(key))
{
2001-04-25 00:49:12 +04:00
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;
}
2001-02-23 03:24:43 +03:00
2001-04-25 00:49:12 +04:00
bool cmCacheManager::IsOn(const char* key) const
2001-04-24 20:40:37 +04:00
{
if(!m_Cache.count(key))
{
return false;
}
2001-04-25 00:49:12 +04:00
const std::string &v = m_Cache.find(key)->second.m_Value;
2001-04-26 18:49:12 +04:00
return cmSystemTools::IsOn(v.c_str());
2001-04-24 20:40:37 +04: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;
2001-04-25 00:49:12 +04:00
for(std::map<std::string, CacheEntry>::const_iterator i = m_Cache.begin();
2001-02-23 03:24:43 +03:00
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;
}
2001-04-26 22:53:44 +04:00
void cmCacheManager::AddCacheEntry(const char* key,
const char* value,
const char* helpString,
CacheEntryType type)
{
CacheEntry e;
e.m_Value = value;
e.m_Type = type;
e.m_HelpString = helpString;
m_Cache[key] = e;
}
void cmCacheManager::AddCacheEntry(const char* key, bool v,
const char* helpString)
2001-04-24 20:40:37 +04:00
{
if(v)
{
2001-04-26 22:53:44 +04:00
this->AddCacheEntry(key, "ON", helpString, cmCacheManager::BOOL);
2001-04-24 20:40:37 +04:00
}
else
{
2001-04-26 22:53:44 +04:00
this->AddCacheEntry(key, "OFF", helpString, cmCacheManager::BOOL);
2001-04-24 20:40:37 +04:00
}
}