2001-02-12 22:26:25 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmCacheManager_h
|
|
|
|
#define cmCacheManager_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
2001-02-19 23:13:48 +03:00
|
|
|
class cmMakefile;
|
2001-02-12 22:26:25 +03:00
|
|
|
|
|
|
|
/** \class cmCacheManager
|
|
|
|
* \brief Control class for cmake's cache
|
|
|
|
*
|
|
|
|
* Load and Save CMake cache files.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class cmCacheManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Types for the cache entries. These are useful as
|
|
|
|
* hints for a cache editor program. Path should bring
|
|
|
|
* up a file chooser, BOOL a check box, and STRING a
|
2001-02-19 23:13:48 +03:00
|
|
|
* text entry box, FILEPATH is a full path to a file which
|
|
|
|
* can be different than just a path input
|
2001-02-12 22:26:25 +03:00
|
|
|
*/
|
2001-02-19 23:13:48 +03:00
|
|
|
enum CacheEntryType{ BOOL=0, PATH, FILEPATH, STRING };
|
2001-02-12 22:26:25 +03:00
|
|
|
static CacheEntryType StringToType(const char*);
|
2001-02-16 23:34:09 +03:00
|
|
|
//! Singleton pattern get instance of the cmCacheManager.
|
2001-02-12 22:26:25 +03:00
|
|
|
static cmCacheManager* GetInstance();
|
2001-02-16 23:34:09 +03:00
|
|
|
|
2001-02-19 23:13:48 +03:00
|
|
|
//! Load a cache for given makefile. Loads from ouput home.
|
|
|
|
bool LoadCache(cmMakefile*);
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2001-02-19 23:13:48 +03:00
|
|
|
//! Save cache for given makefile. Saves to ouput home CMakeCache.txt
|
|
|
|
bool SaveCache(cmMakefile*);
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2001-02-16 23:34:09 +03:00
|
|
|
//! Add an entry into the cache
|
2001-02-12 22:26:25 +03:00
|
|
|
void AddCacheEntry(const char* key, const char* value, CacheEntryType type);
|
|
|
|
|
2001-02-16 23:34:09 +03:00
|
|
|
//! Get a value from the cache given a key
|
2001-02-12 22:26:25 +03:00
|
|
|
const char* GetCacheValue(const char* key);
|
2001-02-19 23:13:48 +03:00
|
|
|
|
2001-02-23 03:24:43 +03:00
|
|
|
//! Print the cache to a stream
|
|
|
|
void PrintCache(std::ostream&);
|
2001-02-12 22:26:25 +03:00
|
|
|
private:
|
|
|
|
static cmCacheManager* s_Instance;
|
|
|
|
class CacheEntry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string m_Value;
|
|
|
|
CacheEntryType m_Type;
|
|
|
|
};
|
|
|
|
std::map<std::string, CacheEntry> m_Cache;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|