5,666,979 members and growing! (16,775 online)
Email Password   helpLost your password?
General Reading » Hardware & System » Registry     Intermediate

CRegSettings - registry helper class

By Magomed Abdurakhmanov

Simple class to store application settings in registry
VC6, VC7, VC7.1, VC8.0, C++Windows, NT4, Win2K, WinXP, ATL, WTL, STL, VS.NET2002, Visual Studio, Dev

Posted: 19 Sep 2002
Updated: 7 Oct 2002
Views: 52,153
Bookmarked: 30 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
21 votes for this Article.
Popularity: 6.06 Rating: 4.58 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
1 vote, 7.7%
4
12 votes, 92.3%
5

Introduction

It's so tedious to use Win32 API or even CRegKey helper class to save/load configuration values to/from registry. This class uses DDX-like metaphors to map class member variables to registry data. It is very simple to use and smart enough for most typical registry usage.

How to use

  1. Include rsettings.h into your project
  2. Declare class that will contain configuration values and define map with BEGIN_REG_MAP and END_REG_MAP:
    // Sample application configuration
    
    class CMySettings : public CRegSettings
    {
    public:
        DWORD Value1; // DWORD option
    
        CString Value2; // String option
    
        DWORD RequiredValue;
    
        BEGIN_REG_MAP(CMySettings)
            REG_ITEM(Value1, 1)
            REG_ITEM(Value2, "Default Value")
            REG_ITEM_REQUIRE(RequiredValue)
        END_REG_MAP()
    };
    
  3. That’s All! Now you can save or load values:

        CMySettings settings(HKEY_CURRENT_USER, 
                "Software\\My Company\\Application\\1.0");
        settings.Load(); // Load configuration
    
    
        ... // use values settings.Value1 etc.
    
            
        settings.Save(); // Save configuration
    
    

CRegSettings constructor can be called with variable number of parameters:

  CMySettings settings(HKEY_CURRENT_USER, "Software\\%s\\%s\\%i", 
     "My Company", "My Application", Version);

Supported types

Variables mapped to corresponding keys and values in registry:

Variable type Registry data type
DWORD REG_DWORD
int REG_DWORD
long REG_DWORD
bool REG_DWORD
char REG_DWORD
wchar_t REG_DWORD
TCHAR* REG_SZ
void* (structs, arrays etc.) REG_BINARY
CString REG_SZ
CSimpleArray<T>* Sub-keys
std::string REG_SZ
std::vector<T>* Sub-keys
std::list<T>* Sub-keys
T* Sub-key

* - T must be inherited from CRegSettings and must contain map declared with BEGIN_REG_MAP - END_REG_MAP

Macros reference

BEGIN_REG_MAP(Name of class) - Marks the beginning of the registry map.

END_REG_MAP() - Marks the end of the registry map.

REG_ITEM(VarName, DefaultValue) - Maps variable to registry value. Registry value will be named "VarName". If the value doesn't exist in registry when loading then variable will be assigned to DefaultValue. Variable can be of one of the following types: DWORD, int, long, bool, char, wchar_t, CString.

REG_ITEM_REQUIRE(VarName) - Same as REG_ITEM, but you cannot specify default value. And Load() call will fail if the value doesn't exist in registry.

REG_ITEM_SUBKEY(VarName) - Maps class inherited from a CRegSettings to sub-key. The class must contain map declared with BEGIN_REG_MAP - END_REG_MAP. See sample application.

REG_ITEM_SIMPLE_ARRAY(VarName) - Maps ATL template class CSimpleArray<T> to registry. T must be inherited from CRegSettings and must have map declared with BEGIN_REG_MAP - END_REG_MAP. Array items will be saved under sub-keys in registry. See sample application.

REG_ITEM_VECTOR(VarName) - Same as REG_ITEM_SIMPLE_ARRAY, but forstd::vector type.

REG_ITEM_LIST(VarName) - Same as REG_ITEM_SIMPLE_ARRAY, but for std::list type.

REG_ITEM_SZ(VarName, DEFAULT_VALUE) - Maps C string (TCHAR*) to registry value (REG_SZ). The registry value will be named "VarName". If the value doesn't exist in registry when loading then variable will be assigned to DefaultValue.

REG_ITEM_SZ_REQUIRE(VarName) - Same as REG_ITEM_SZ, but you cannot specify default value. And Load() call will fail if the value doesn't exist in registry.

REG_ITEM_SZ_LEN(VarName, DEFAULT_VALUE, VarLen) - Same as REG_ITEM_SZ with the additional parameter VarLen used to specify buffer size in TCHARs.

REG_ITEM_SZ_REQUIRE_LEN(VarName, VarLen) - Same as REG_ITEM_SZ_REQUIRE with the additional parameter VarLen used to specify buffer size in TCHARs.

REG_ITEM_BINARY(VarName) - Maps any type to registry value (REG_BINARY). The registry value will be named "VarName". Useful with structures, arrays etc. Size of binary data is calculated through sizeof(VarName).

REG_ITEM_BINARY_SIZE(VarName, VarSize) - Same as REG_ITEM_BINARY with the additional parameter VarSize which specifies variable size.

REG_ITEM_STL(VarName, DefaultValue) and REG_ITEM_STL_REQUIRE(VarName) - Same as REG_ITEM and REG_ITEM_REQUIRE. Maps std::string to REG_SZ.

History

  • 7.10.2002
    • OnBeforeSave, OnAfterLoad virtual methods;
    • Bugs fixed.
  • 25.09.2002
    • REG_ITEM_SUBKEY: store data in sub keys 
    • REG_ITEM_BINARY,REG_ITEM_BINARY_SIZE: store binary data (void*, structs, etc.) 
    • REG_ITEM_SZ, REG_ITEM_SZ_REQUIRE, REG_ITEM_SZ_LEN,
    • REG_ITEM_SZ_REQUIRE_LEN: store C strings (TCHAR*) 
    • REG_ITEM and REG_ITEM_REQUIRED enhanced to support: bool, int, char and wchar_t
  • 19.09.2002
    • Created

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Magomed Abdurakhmanov



Occupation: Web Developer
Location: Russian Federation Russian Federation

Other popular Hardware & System articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 13 of 13 (Total in Forum: 13) (Refresh)FirstPrevNext
GeneralGood code! thanks for your helpmemberRyan McDermott8:33 18 Mar '04  
Generalloading .reg file programmaticallymemberbruno leclerc2:12 18 Mar '04  
GeneralRe: loading .reg file programmaticallymemberyamei5:46 13 Oct '04  
GeneralThis is great!memberRui Jiang19:46 3 Mar '04  
GeneralI can't get a space between the valuesmemberRyan McDermott16:45 14 Feb '04  
GeneralRe: I can't get a space between the valuesmemberMagomed G. Abdurakhmanov21:43 15 Feb '04  
GeneralWhy use CString?sussAnonymous9:54 16 Oct '02  
GeneralA minor enhancementmemberAles Krajnc22:54 14 Oct '02  
GeneralRe: A minor enhancementmemberMagomed G. Abdurakhmanov2:42 15 Oct '02  
GeneralUnlock Pentential!memberJoel Holdsworth9:21 7 Oct '02  
GeneralRe: Unlock Pentential!memberMagomed G. Abdurakhmanov10:41 7 Oct '02  
GeneralThanks.But....memberLeafdown9:07 23 Sep '02  
GeneralRe: Thanks.But....memberMagomed G. Abdurakhmanov14:31 24 Sep '02  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 7 Oct 2002
Editor: Nishant Sivakumar
Copyright 2002 by Magomed Abdurakhmanov
Everything else Copyright © CodeProject, 1999-2008
Web09 | Advertise on the Code Project