2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2001-02-12 22:26:25 +03:00
|
|
|
#ifndef cmCacheManager_h
|
|
|
|
#define cmCacheManager_h
|
|
|
|
|
2016-08-18 01:24:24 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2009-03-10 18:10:42 +03:00
|
|
|
#include "cmPropertyMap.h"
|
2015-04-07 23:45:54 +03:00
|
|
|
#include "cmState.h"
|
|
|
|
|
2016-08-18 01:24:24 +03:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-08-17 02:08:13 +03:00
|
|
|
class cmake;
|
2001-02-12 22:26:25 +03:00
|
|
|
|
|
|
|
/** \class cmCacheManager
|
|
|
|
* \brief Control class for cmake's cache
|
|
|
|
*
|
|
|
|
* Load and Save CMake cache files.
|
2012-08-13 21:42:58 +04:00
|
|
|
*
|
2001-02-12 22:26:25 +03:00
|
|
|
*/
|
|
|
|
class cmCacheManager
|
|
|
|
{
|
2001-04-24 00:40:29 +04:00
|
|
|
public:
|
2015-10-10 15:26:56 +03:00
|
|
|
cmCacheManager();
|
2002-09-12 16:56:32 +04:00
|
|
|
class CacheIterator;
|
|
|
|
friend class cmCacheManager::CacheIterator;
|
2002-09-11 22:05:45 +04:00
|
|
|
|
|
|
|
private:
|
2001-04-26 22:53:44 +04:00
|
|
|
struct CacheEntry
|
2001-04-24 00:40:29 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string Value;
|
2015-04-07 23:45:54 +03:00
|
|
|
cmState::CacheEntryType Type;
|
2009-03-10 18:10:42 +03:00
|
|
|
cmPropertyMap Properties;
|
2016-06-10 10:34:49 +03:00
|
|
|
std::vector<std::string> GetPropertyList() const;
|
2013-09-03 00:27:32 +04:00
|
|
|
const char* GetProperty(const std::string&) const;
|
|
|
|
void SetProperty(const std::string& property, const char* value);
|
|
|
|
void AppendProperty(const std::string& property, const char* value,
|
2016-05-16 17:34:04 +03:00
|
|
|
bool asString = false);
|
2006-03-15 19:02:08 +03:00
|
|
|
bool Initialized;
|
2015-04-07 23:45:54 +03:00
|
|
|
CacheEntry()
|
2016-05-16 17:34:04 +03:00
|
|
|
: Value("")
|
|
|
|
, Type(cmState::UNINITIALIZED)
|
|
|
|
, Initialized(false)
|
|
|
|
{
|
|
|
|
}
|
2001-04-24 00:40:29 +04:00
|
|
|
};
|
2002-09-11 22:05:45 +04:00
|
|
|
|
|
|
|
public:
|
2002-08-21 19:57:12 +04:00
|
|
|
class CacheIterator
|
|
|
|
{
|
|
|
|
public:
|
2002-08-24 00:13:34 +04:00
|
|
|
void Begin();
|
2014-02-05 01:06:56 +04:00
|
|
|
bool Find(const std::string&);
|
2003-02-05 22:55:46 +03:00
|
|
|
bool IsAtEnd() const;
|
2002-08-24 00:13:34 +04:00
|
|
|
void Next();
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string GetName() const { return this->Position->first; }
|
2016-06-10 10:34:49 +03:00
|
|
|
std::vector<std::string> GetPropertyList() const;
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* GetProperty(const std::string&) const;
|
|
|
|
bool GetPropertyAsBool(const std::string&) const;
|
2013-09-03 00:27:32 +04:00
|
|
|
bool PropertyExists(const std::string&) const;
|
|
|
|
void SetProperty(const std::string& property, const char* value);
|
|
|
|
void AppendProperty(const std::string& property, const char* value,
|
2016-05-16 17:34:04 +03:00
|
|
|
bool asString = false);
|
2013-09-03 00:27:32 +04:00
|
|
|
void SetProperty(const std::string& property, bool value);
|
2015-04-08 19:43:46 +03:00
|
|
|
const char* GetValue() const { return this->GetEntry().Value.c_str(); }
|
2003-08-08 17:22:56 +04:00
|
|
|
bool GetValueAsBool() const;
|
2002-09-11 22:05:45 +04:00
|
|
|
void SetValue(const char*);
|
2016-05-16 17:34:04 +03:00
|
|
|
cmState::CacheEntryType GetType() const { return this->GetEntry().Type; }
|
|
|
|
void SetType(cmState::CacheEntryType ty) { this->GetEntry().Type = ty; }
|
2006-03-15 19:02:08 +03:00
|
|
|
bool Initialized() { return this->GetEntry().Initialized; }
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCacheManager& Container;
|
2014-02-10 09:21:34 +04:00
|
|
|
std::map<std::string, CacheEntry>::iterator Position;
|
2016-05-16 17:34:04 +03:00
|
|
|
CacheIterator(cmCacheManager& cm)
|
|
|
|
: Container(cm)
|
|
|
|
{
|
2002-08-21 19:57:12 +04:00
|
|
|
this->Begin();
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
CacheIterator(cmCacheManager& cm, const char* key)
|
|
|
|
: Container(cm)
|
|
|
|
{
|
|
|
|
if (key) {
|
2003-03-06 19:18:58 +03:00
|
|
|
this->Find(key);
|
2013-05-02 18:46:57 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
private:
|
2006-03-15 19:02:08 +03:00
|
|
|
CacheEntry const& GetEntry() const { return this->Position->second; }
|
|
|
|
CacheEntry& GetEntry() { return this->Position->second; }
|
2002-08-21 19:57:12 +04:00
|
|
|
};
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-08-21 19:57:12 +04:00
|
|
|
///! return an iterator to iterate through the cache map
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCacheManager::CacheIterator NewIterator() { return CacheIterator(*this); }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
///! Load a cache for given makefile. Loads from path/CMakeCache.txt.
|
2014-02-08 00:34:39 +04:00
|
|
|
bool LoadCache(const std::string& path, bool internal,
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string>& excludes,
|
|
|
|
std::set<std::string>& includes);
|
2001-05-02 00:28:32 +04:00
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
///! Save cache for given makefile. Saves to ouput path/CMakeCache.txt
|
2016-05-16 17:34:04 +03:00
|
|
|
bool SaveCache(const std::string& path);
|
2001-08-08 19:54:46 +04:00
|
|
|
|
2004-05-20 23:08:18 +04:00
|
|
|
///! Delete the cache given
|
2014-02-08 00:34:39 +04:00
|
|
|
bool DeleteCache(const std::string& path);
|
2004-05-20 23:08:18 +04:00
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
///! Print the cache to a stream
|
|
|
|
void PrintCache(std::ostream&) const;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
///! Get the iterator for an entry with a given key.
|
2016-06-27 23:44:16 +03:00
|
|
|
cmCacheManager::CacheIterator GetCacheIterator(const char* key = CM_NULLPTR);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
///! Remove an entry from the cache
|
2014-02-05 01:06:56 +04:00
|
|
|
void RemoveCacheEntry(const std::string& key);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-08-21 19:57:12 +04:00
|
|
|
///! Get the number of entries in the cache
|
2016-05-16 17:34:04 +03:00
|
|
|
int GetSize() { return static_cast<int>(this->Cache.size()); }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-09-04 23:46:25 +04:00
|
|
|
///! Get a value from the cache given a key
|
2015-04-05 11:28:34 +03:00
|
|
|
const char* GetInitializedCacheValue(const std::string& key) const;
|
2015-04-05 20:50:05 +03:00
|
|
|
|
2015-04-05 20:50:05 +03:00
|
|
|
const char* GetCacheEntryValue(const std::string& key)
|
|
|
|
{
|
|
|
|
cmCacheManager::CacheIterator it = this->GetCacheIterator(key.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (it.IsAtEnd()) {
|
2016-06-27 23:44:16 +03:00
|
|
|
return CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-04-05 20:50:05 +03:00
|
|
|
return it.GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetCacheEntryProperty(std::string const& key,
|
|
|
|
std::string const& propName)
|
|
|
|
{
|
|
|
|
return this->GetCacheIterator(key.c_str()).GetProperty(propName);
|
|
|
|
}
|
|
|
|
|
2015-04-07 23:45:54 +03:00
|
|
|
cmState::CacheEntryType GetCacheEntryType(std::string const& key)
|
2015-04-05 20:50:05 +03:00
|
|
|
{
|
|
|
|
return this->GetCacheIterator(key.c_str()).GetType();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetCacheEntryPropertyAsBool(std::string const& key,
|
|
|
|
std::string const& propName)
|
|
|
|
{
|
|
|
|
return this->GetCacheIterator(key.c_str()).GetPropertyAsBool(propName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetCacheEntryProperty(std::string const& key,
|
|
|
|
std::string const& propName,
|
|
|
|
std::string const& value)
|
|
|
|
{
|
|
|
|
this->GetCacheIterator(key.c_str()).SetProperty(propName, value.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetCacheEntryBoolProperty(std::string const& key,
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string const& propName, bool value)
|
2015-04-05 20:50:05 +03:00
|
|
|
{
|
|
|
|
this->GetCacheIterator(key.c_str()).SetProperty(propName, value);
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void SetCacheEntryValue(std::string const& key, std::string const& value)
|
2015-04-05 20:50:05 +03:00
|
|
|
{
|
|
|
|
this->GetCacheIterator(key.c_str()).SetValue(value.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveCacheEntryProperty(std::string const& key,
|
|
|
|
std::string const& propName)
|
|
|
|
{
|
2016-06-27 23:44:16 +03:00
|
|
|
this->GetCacheIterator(key.c_str())
|
|
|
|
.SetProperty(propName, (void*)CM_NULLPTR);
|
2015-04-05 20:50:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void AppendCacheEntryProperty(std::string const& key,
|
|
|
|
std::string const& propName,
|
|
|
|
std::string const& value,
|
|
|
|
bool asString = false)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GetCacheIterator(key.c_str())
|
|
|
|
.AppendProperty(propName, value.c_str(), asString);
|
2015-04-05 20:50:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> GetCacheEntryKeys()
|
|
|
|
{
|
|
|
|
std::vector<std::string> definitions;
|
|
|
|
definitions.reserve(this->GetSize());
|
|
|
|
cmCacheManager::CacheIterator cit = this->GetCacheIterator();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (cit.Begin(); !cit.IsAtEnd(); cit.Next()) {
|
2015-04-05 20:50:05 +03:00
|
|
|
definitions.push_back(cit.GetName());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-04-05 20:50:05 +03:00
|
|
|
return definitions;
|
|
|
|
}
|
|
|
|
|
2008-01-24 15:37:08 +03:00
|
|
|
/** Get the version of CMake that wrote the cache. */
|
2016-05-16 17:34:04 +03:00
|
|
|
unsigned int GetCacheMajorVersion() const { return this->CacheMajorVersion; }
|
|
|
|
unsigned int GetCacheMinorVersion() const { return this->CacheMinorVersion; }
|
2008-01-24 15:37:08 +03:00
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
protected:
|
|
|
|
///! Add an entry into the cache
|
2014-02-05 01:06:56 +04:00
|
|
|
void AddCacheEntry(const std::string& key, const char* value,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* helpString, cmState::CacheEntryType type);
|
2001-08-08 19:54:46 +04:00
|
|
|
|
2002-09-11 22:05:45 +04:00
|
|
|
///! Get a cache entry object for a key
|
2016-05-16 17:34:04 +03:00
|
|
|
CacheEntry* GetCacheEntry(const std::string& key);
|
2006-03-09 23:47:18 +03:00
|
|
|
///! Clean out the CMakeFiles directory if no CMakeCache.txt
|
2014-02-08 00:34:39 +04:00
|
|
|
void CleanCMakeFiles(const std::string& path);
|
2008-01-24 15:37:08 +03:00
|
|
|
|
|
|
|
// Cache version info
|
|
|
|
unsigned int CacheMajorVersion;
|
|
|
|
unsigned int CacheMinorVersion;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2001-02-12 22:26:25 +03:00
|
|
|
private:
|
2009-03-13 17:53:47 +03:00
|
|
|
cmake* CMakeInstance;
|
2016-05-16 17:34:04 +03:00
|
|
|
typedef std::map<std::string, CacheEntry> CacheEntryMap;
|
2009-03-12 17:49:05 +03:00
|
|
|
static void OutputHelpString(std::ostream& fout,
|
2001-04-26 22:53:44 +04:00
|
|
|
const std::string& helpString);
|
2009-03-12 17:49:05 +03:00
|
|
|
static void OutputKey(std::ostream& fout, std::string const& key);
|
|
|
|
static void OutputValue(std::ostream& fout, std::string const& value);
|
|
|
|
|
|
|
|
static const char* PersistentProperties[];
|
|
|
|
bool ReadPropertyEntry(std::string const& key, CacheEntry& e);
|
|
|
|
void WritePropertyEntries(std::ostream& os, CacheIterator const& i);
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
CacheEntryMap Cache;
|
2015-10-10 15:23:48 +03:00
|
|
|
// Only cmake and cmState should be able to add cache values
|
2001-08-08 19:54:46 +04:00
|
|
|
// the commands should never use the cmCacheManager directly
|
2015-04-04 22:20:12 +03:00
|
|
|
friend class cmState; // allow access to add cache values
|
2016-05-16 17:34:04 +03:00
|
|
|
friend class cmake; // allow access to add cache values
|
2001-02-12 22:26:25 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|