1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/registry.cpp
3 // Purpose: implementation of registry classes and functions
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 // TODO: - parsing of registry key names
11 // - support of other (than REG_SZ/REG_DWORD) registry types
12 // - add high level functions (RegisterOleServer, ...)
13 ///////////////////////////////////////////////////////////////////////////////
16 #pragma implementation "registry.h"
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
26 // other wxWindows headers
27 #include "wx/string.h"
36 #define WIN32_LEAN_AND_MEAN
42 #include "wx/msw/private.h"
48 #include <stdlib.h> // for _MAX_PATH
55 #define HKEY_DEFINED // already defined in windows.h
56 #include "wx/msw/registry.h"
58 // some registry functions don't like signed chars
59 typedef unsigned char *RegString
;
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 // the standard key names, short names and handles all bundled together for
71 const wxChar
*szShortName
;
75 { HKEY_CLASSES_ROOT
, wxT("HKEY_CLASSES_ROOT"), wxT("HKCR") },
77 { HKEY_CURRENT_USER
, wxT("HKEY_CURRENT_USER"), wxT("HKCU") },
78 { HKEY_LOCAL_MACHINE
, wxT("HKEY_LOCAL_MACHINE"), wxT("HKLM") },
79 { HKEY_USERS
, wxT("HKEY_USERS"), wxT("HKU") }, // short name?
81 { HKEY_PERFORMANCE_DATA
, wxT("HKEY_PERFORMANCE_DATA"), wxT("HKPD") },
83 #if WINVER >= 0x0400 && !defined(__WXWINCE__)
84 { HKEY_CURRENT_CONFIG
, wxT("HKEY_CURRENT_CONFIG"), wxT("HKCC") },
85 #if !defined(__GNUWIN32__) && !defined(__WXWINCE__)
86 { HKEY_DYN_DATA
, wxT("HKEY_DYN_DATA"), wxT("HKDD") }, // short name?
88 #endif //WINVER >= 4.0
92 // the registry name separator (perhaps one day MS will change it to '/' ;-)
93 #define REG_SEPARATOR wxT('\\')
95 // useful for Windows programmers: makes somewhat more clear all these zeroes
96 // being passed to Windows APIs
97 #define RESERVED (NULL)
99 // ----------------------------------------------------------------------------
101 // ----------------------------------------------------------------------------
103 // const_cast<> is not yet supported by all compilers
104 #define CONST_CAST ((wxRegKey *)this)->
106 // and neither is mutable which m_dwLastError should be
107 #define m_dwLastError CONST_CAST m_dwLastError
109 // ----------------------------------------------------------------------------
110 // non member functions
111 // ----------------------------------------------------------------------------
113 // removes the trailing backslash from the string if it has one
114 static inline void RemoveTrailingSeparator(wxString
& str
);
116 // returns TRUE if given registry key exists
117 static bool KeyExists(WXHKEY hRootKey
, const wxChar
*szKey
);
119 // combines value and key name (uses static buffer!)
120 static const wxChar
*GetFullName(const wxRegKey
*pKey
,
121 const wxChar
*szValue
= NULL
);
123 // ============================================================================
124 // implementation of wxRegKey class
125 // ============================================================================
127 // ----------------------------------------------------------------------------
128 // static functions and variables
129 // ----------------------------------------------------------------------------
131 const size_t wxRegKey::nStdKeys
= WXSIZEOF(aStdKeys
);
133 // @@ should take a `StdKey key', but as it's often going to be used in loops
134 // it would require casts in user code.
135 const wxChar
*wxRegKey::GetStdKeyName(size_t key
)
137 // return empty string if key is invalid
138 wxCHECK_MSG( key
< nStdKeys
, wxEmptyString
, wxT("invalid key in wxRegKey::GetStdKeyName") );
140 return aStdKeys
[key
].szName
;
143 const wxChar
*wxRegKey::GetStdKeyShortName(size_t key
)
145 // return empty string if key is invalid
146 wxCHECK( key
< nStdKeys
, wxEmptyString
);
148 return aStdKeys
[key
].szShortName
;
151 wxRegKey::StdKey
wxRegKey::ExtractKeyName(wxString
& strKey
)
153 wxString strRoot
= strKey
.BeforeFirst(REG_SEPARATOR
);
157 for ( ui
= 0; ui
< nStdKeys
; ui
++ ) {
158 if ( strRoot
.CmpNoCase(aStdKeys
[ui
].szName
) == 0 ||
159 strRoot
.CmpNoCase(aStdKeys
[ui
].szShortName
) == 0 ) {
160 hRootKey
= aStdKeys
[ui
].hkey
;
165 if ( ui
== nStdKeys
) {
166 wxFAIL_MSG(wxT("invalid key prefix in wxRegKey::ExtractKeyName."));
168 hRootKey
= HKEY_CLASSES_ROOT
;
171 strKey
= strKey
.After(REG_SEPARATOR
);
172 if ( !strKey
.IsEmpty() && strKey
.Last() == REG_SEPARATOR
)
173 strKey
.Truncate(strKey
.Len() - 1);
176 return (wxRegKey::StdKey
)(int)hRootKey
;
179 wxRegKey::StdKey
wxRegKey::GetStdKeyFromHkey(WXHKEY hkey
)
181 for ( size_t ui
= 0; ui
< nStdKeys
; ui
++ ) {
182 if ( (int) aStdKeys
[ui
].hkey
== (int) hkey
)
186 wxFAIL_MSG(wxT("non root hkey passed to wxRegKey::GetStdKeyFromHkey."));
191 // ----------------------------------------------------------------------------
193 // ----------------------------------------------------------------------------
197 m_hRootKey
= (WXHKEY
) aStdKeys
[HKCR
].hkey
;
202 wxRegKey::wxRegKey(const wxString
& strKey
) : m_strKey(strKey
)
204 m_hRootKey
= (WXHKEY
) aStdKeys
[ExtractKeyName(m_strKey
)].hkey
;
209 // parent is a predefined (and preopened) key
210 wxRegKey::wxRegKey(StdKey keyParent
, const wxString
& strKey
) : m_strKey(strKey
)
212 RemoveTrailingSeparator(m_strKey
);
213 m_hRootKey
= (WXHKEY
) aStdKeys
[keyParent
].hkey
;
218 // parent is a normal regkey
219 wxRegKey::wxRegKey(const wxRegKey
& keyParent
, const wxString
& strKey
)
220 : m_strKey(keyParent
.m_strKey
)
222 // combine our name with parent's to get the full name
223 if ( !m_strKey
.IsEmpty() &&
224 (strKey
.IsEmpty() || strKey
[0] != REG_SEPARATOR
) ) {
225 m_strKey
+= REG_SEPARATOR
;
229 RemoveTrailingSeparator(m_strKey
);
231 m_hRootKey
= keyParent
.m_hRootKey
;
236 // dtor closes the key releasing system resource
237 wxRegKey::~wxRegKey()
242 // ----------------------------------------------------------------------------
243 // change the key name/hkey
244 // ----------------------------------------------------------------------------
246 // set the full key name
247 void wxRegKey::SetName(const wxString
& strKey
)
252 m_hRootKey
= (WXHKEY
) aStdKeys
[ExtractKeyName(m_strKey
)].hkey
;
255 // the name is relative to the parent key
256 void wxRegKey::SetName(StdKey keyParent
, const wxString
& strKey
)
261 RemoveTrailingSeparator(m_strKey
);
262 m_hRootKey
= (WXHKEY
) aStdKeys
[keyParent
].hkey
;
265 // the name is relative to the parent key
266 void wxRegKey::SetName(const wxRegKey
& keyParent
, const wxString
& strKey
)
270 // combine our name with parent's to get the full name
272 // NB: this method is called by wxRegConfig::SetPath() which is a performance
273 // critical function and so it preallocates space for our m_strKey to
274 // gain some speed - this is why we only use += here and not = which
275 // would just free the prealloc'd buffer and would have to realloc it the
278 m_strKey
+= keyParent
.m_strKey
;
279 if ( !strKey
.IsEmpty() && strKey
[0] != REG_SEPARATOR
)
280 m_strKey
+= REG_SEPARATOR
;
283 RemoveTrailingSeparator(m_strKey
);
285 m_hRootKey
= keyParent
.m_hRootKey
;
288 // hKey should be opened and will be closed in wxRegKey dtor
289 void wxRegKey::SetHkey(WXHKEY hKey
)
296 // ----------------------------------------------------------------------------
297 // info about the key
298 // ----------------------------------------------------------------------------
300 // returns TRUE if the key exists
301 bool wxRegKey::Exists() const
303 // opened key has to exist, try to open it if not done yet
304 return IsOpened() ? TRUE
: KeyExists(m_hRootKey
, m_strKey
);
307 // returns the full name of the key (prefix is abbreviated if bShortPrefix)
308 wxString
wxRegKey::GetName(bool bShortPrefix
) const
310 StdKey key
= GetStdKeyFromHkey((WXHKEY
) m_hRootKey
);
311 wxString str
= bShortPrefix
? aStdKeys
[key
].szShortName
312 : aStdKeys
[key
].szName
;
313 if ( !m_strKey
.IsEmpty() )
314 str
<< _T("\\") << m_strKey
;
319 bool wxRegKey::GetKeyInfo(size_t *pnSubKeys
,
322 size_t *pnMaxValueLen
) const
324 #if defined(__WIN32__)
326 // old gcc headers incorrectly prototype RegQueryInfoKey()
327 #if defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__)
328 #define REG_PARAM (size_t *)
330 #define REG_PARAM (LPDWORD)
333 // it might be unexpected to some that this function doesn't open the key
334 wxASSERT_MSG( IsOpened(), _T("key should be opened in GetKeyInfo") );
336 m_dwLastError
= ::RegQueryInfoKey
340 NULL
, // (ptr to) size of class name buffer
343 pnSubKeys
, // [out] number of subkeys
345 pnMaxKeyLen
, // [out] max length of a subkey name
346 NULL
, // longest subkey class name
348 pnValues
, // [out] number of values
350 pnMaxValueLen
, // [out] max length of a value name
351 NULL
, // longest value data
352 NULL
, // security descriptor
353 NULL
// time of last modification
358 if ( m_dwLastError
!= ERROR_SUCCESS
) {
359 wxLogSysError(m_dwLastError
, _("Can't get info about registry key '%s'"),
366 wxFAIL_MSG("GetKeyInfo() not implemented");
372 // ----------------------------------------------------------------------------
374 // ----------------------------------------------------------------------------
376 // opens key (it's not an error to call Open() on an already opened key)
377 bool wxRegKey::Open()
383 m_dwLastError
= RegOpenKeyEx((HKEY
) m_hRootKey
, m_strKey
,
385 if ( m_dwLastError
!= ERROR_SUCCESS
) {
386 wxLogSysError(m_dwLastError
, _("Can't open registry key '%s'"),
392 m_hKey
= (WXHKEY
) tmpKey
;
397 // creates key, failing if it exists and !bOkIfExists
398 bool wxRegKey::Create(bool bOkIfExists
)
400 // check for existence only if asked (i.e. order is important!)
401 if ( !bOkIfExists
&& Exists() ) {
411 m_dwLastError
= RegCreateKeyEx((HKEY
) m_hRootKey
, m_strKey
,
413 NULL
, // class string
420 m_dwLastError
= RegCreateKey((HKEY
) m_hRootKey
, m_strKey
, &tmpKey
);
422 if ( m_dwLastError
!= ERROR_SUCCESS
) {
423 wxLogSysError(m_dwLastError
, _("Can't create registry key '%s'"),
429 m_hKey
= (WXHKEY
) tmpKey
;
434 // close the key, it's not an error to call it when not opened
435 bool wxRegKey::Close()
438 m_dwLastError
= RegCloseKey((HKEY
) m_hKey
);
441 if ( m_dwLastError
!= ERROR_SUCCESS
) {
442 wxLogSysError(m_dwLastError
, _("Can't close registry key '%s'"),
452 bool wxRegKey::RenameValue(const wxChar
*szValueOld
, const wxChar
*szValueNew
)
455 if ( HasValue(szValueNew
) ) {
456 wxLogError(_("Registry value '%s' already exists."), szValueNew
);
462 !CopyValue(szValueOld
, *this, szValueNew
) ||
463 !DeleteValue(szValueOld
) ) {
464 wxLogError(_("Failed to rename registry value '%s' to '%s'."),
465 szValueOld
, szValueNew
);
473 bool wxRegKey::CopyValue(const wxChar
*szValue
,
475 const wxChar
*szValueNew
)
478 // by default, use the same name
479 szValueNew
= szValue
;
482 switch ( GetValueType(szValue
) ) {
486 return QueryValue(szValue
, strVal
) &&
487 keyDst
.SetValue(szValueNew
, strVal
);
491 /* case Type_Dword_little_endian: == Type_Dword */
494 return QueryValue(szValue
, &dwVal
) &&
495 keyDst
.SetValue(szValueNew
, dwVal
);
498 // these types are unsupported because I am not sure about how
499 // exactly they should be copied and because they shouldn't
500 // occur among the application keys (supposedly created with
504 case Type_Expand_String
:
506 case Type_Dword_big_endian
:
508 case Type_Multi_String
:
509 case Type_Resource_list
:
510 case Type_Full_resource_descriptor
:
511 case Type_Resource_requirements_list
:
514 wxLogError(_("Can't copy values of unsupported type %d."),
515 GetValueType(szValue
));
520 bool wxRegKey::Rename(const wxChar
*szNewName
)
522 wxCHECK_MSG( !!m_strKey
, FALSE
, _T("registry hives can't be renamed") );
525 wxLogError(_("Registry key '%s' does not exist, cannot rename it."),
531 // do we stay in the same hive?
532 bool inSameHive
= !wxStrchr(szNewName
, REG_SEPARATOR
);
534 // construct the full new name of the key
538 // rename the key to the new name under the same parent
539 wxString strKey
= m_strKey
.BeforeLast(REG_SEPARATOR
);
541 // don't add '\\' in the start if strFullNewName is empty
542 strKey
+= REG_SEPARATOR
;
547 keyDst
.SetName(GetStdKeyFromHkey(m_hRootKey
), strKey
);
550 // this is the full name already
551 keyDst
.SetName(szNewName
);
554 bool ok
= keyDst
.Create(FALSE
/* fail if alredy exists */);
556 wxLogError(_("Registry key '%s' already exists."),
557 GetFullName(&keyDst
));
560 ok
= Copy(keyDst
) && DeleteSelf();
564 wxLogError(_("Failed to rename the registry key '%s' to '%s'."),
565 GetFullName(this), GetFullName(&keyDst
));
568 m_hRootKey
= keyDst
.m_hRootKey
;
569 m_strKey
= keyDst
.m_strKey
;
575 bool wxRegKey::Copy(const wxChar
*szNewName
)
577 // create the new key first
578 wxRegKey
keyDst(szNewName
);
579 bool ok
= keyDst
.Create(FALSE
/* fail if alredy exists */);
583 // we created the dest key but copying to it failed - delete it
585 (void)keyDst
.DeleteSelf();
592 bool wxRegKey::Copy(wxRegKey
& keyDst
)
596 // copy all sub keys to the new location
599 bool bCont
= GetFirstKey(strKey
, lIndex
);
600 while ( ok
&& bCont
) {
601 wxRegKey
key(*this, strKey
);
603 keyName
<< GetFullName(&keyDst
) << REG_SEPARATOR
<< strKey
;
604 ok
= key
.Copy((const wxChar
*) keyName
);
607 bCont
= GetNextKey(strKey
, lIndex
);
612 bCont
= GetFirstValue(strVal
, lIndex
);
613 while ( ok
&& bCont
) {
614 ok
= CopyValue(strVal
, keyDst
);
617 wxLogSysError(m_dwLastError
,
618 _("Failed to copy registry value '%s'"),
622 bCont
= GetNextValue(strVal
, lIndex
);
627 wxLogError(_("Failed to copy the contents of registry key '%s' to '%s'."), GetFullName(this), GetFullName(&keyDst
));
633 // ----------------------------------------------------------------------------
634 // delete keys/values
635 // ----------------------------------------------------------------------------
636 bool wxRegKey::DeleteSelf()
641 // it already doesn't exist - ok!
646 // prevent a buggy program from erasing one of the root registry keys or an
647 // immediate subkey (i.e. one which doesn't have '\\' inside) of any other
648 // key except HKCR (HKCR has some "deleteable" subkeys)
649 if ( m_strKey
.IsEmpty() ||
650 ((m_hRootKey
!= (WXHKEY
) aStdKeys
[HKCR
].hkey
) &&
651 (m_strKey
.Find(REG_SEPARATOR
) == wxNOT_FOUND
)) ) {
652 wxLogError(_("Registry key '%s' is needed for normal system operation,\ndeleting it will leave your system in unusable state:\noperation aborted."), GetFullName(this));
657 // we can't delete keys while enumerating because it confuses GetNextKey, so
658 // we first save the key names and then delete them all
659 wxArrayString astrSubkeys
;
663 bool bCont
= GetFirstKey(strKey
, lIndex
);
665 astrSubkeys
.Add(strKey
);
667 bCont
= GetNextKey(strKey
, lIndex
);
670 size_t nKeyCount
= astrSubkeys
.Count();
671 for ( size_t nKey
= 0; nKey
< nKeyCount
; nKey
++ ) {
672 wxRegKey
key(*this, astrSubkeys
[nKey
]);
673 if ( !key
.DeleteSelf() )
677 // now delete this key itself
680 m_dwLastError
= RegDeleteKey((HKEY
) m_hRootKey
, m_strKey
);
681 if ( m_dwLastError
!= ERROR_SUCCESS
) {
682 wxLogSysError(m_dwLastError
, _("Can't delete key '%s'"),
690 bool wxRegKey::DeleteKey(const wxChar
*szKey
)
695 wxRegKey
key(*this, szKey
);
696 return key
.DeleteSelf();
699 bool wxRegKey::DeleteValue(const wxChar
*szValue
)
704 #if defined(__WIN32__)
705 m_dwLastError
= RegDeleteValue((HKEY
) m_hKey
, WXSTRINGCAST szValue
);
707 // deleting a value which doesn't exist is not considered an error
708 if ( (m_dwLastError
!= ERROR_SUCCESS
) &&
709 (m_dwLastError
!= ERROR_FILE_NOT_FOUND
) ) {
710 wxLogSysError(m_dwLastError
, _("Can't delete value '%s' from key '%s'"),
711 szValue
, GetName().c_str());
715 // named registry values don't exist in Win16 world
716 wxASSERT( IsEmpty(szValue
) );
718 // just set the (default and unique) value of the key to ""
719 m_dwLastError
= RegSetValue((HKEY
) m_hKey
, NULL
, REG_SZ
, "", RESERVED
);
720 if ( m_dwLastError
!= ERROR_SUCCESS
) {
721 wxLogSysError(m_dwLastError
, _("Can't delete value of key '%s'"),
730 // ----------------------------------------------------------------------------
731 // access to values and subkeys
732 // ----------------------------------------------------------------------------
734 // return TRUE if value exists
735 bool wxRegKey::HasValue(const wxChar
*szValue
) const
737 // this function should be silent, so suppress possible messages from Open()
741 if ( !CONST_CAST
Open() )
744 LONG dwRet
= ::RegQueryValueEx((HKEY
) m_hKey
,
745 WXSTRINGCAST szValue
,
748 return dwRet
== ERROR_SUCCESS
;
750 // only unnamed value exists
751 return IsEmpty(szValue
);
755 // returns TRUE if this key has any values
756 bool wxRegKey::HasValues() const
758 // suppress possible messages from GetFirstValue()
761 // just call GetFirstValue with dummy parameters
764 return CONST_CAST
GetFirstValue(str
, l
);
767 // returns TRUE if this key has any subkeys
768 bool wxRegKey::HasSubkeys() const
770 // suppress possible messages from GetFirstKey()
773 // just call GetFirstKey with dummy parameters
776 return CONST_CAST
GetFirstKey(str
, l
);
779 // returns TRUE if given subkey exists
780 bool wxRegKey::HasSubKey(const wxChar
*szKey
) const
782 // this function should be silent, so suppress possible messages from Open()
785 if ( !CONST_CAST
Open() )
788 return KeyExists(m_hKey
, szKey
);
791 wxRegKey::ValueType
wxRegKey::GetValueType(const wxChar
*szValue
) const
794 if ( ! CONST_CAST
Open() )
798 m_dwLastError
= RegQueryValueEx((HKEY
) m_hKey
, WXSTRINGCAST szValue
, RESERVED
,
799 &dwType
, NULL
, NULL
);
800 if ( m_dwLastError
!= ERROR_SUCCESS
) {
801 wxLogSysError(m_dwLastError
, _("Can't read value of key '%s'"),
806 return (ValueType
)dwType
;
808 return IsEmpty(szValue
) ? Type_String
: Type_None
;
813 bool wxRegKey::SetValue(const wxChar
*szValue
, long lValue
)
815 if ( CONST_CAST
Open() ) {
816 m_dwLastError
= RegSetValueEx((HKEY
) m_hKey
, szValue
, (DWORD
) RESERVED
, REG_DWORD
,
817 (RegString
)&lValue
, sizeof(lValue
));
818 if ( m_dwLastError
== ERROR_SUCCESS
)
822 wxLogSysError(m_dwLastError
, _("Can't set value of '%s'"),
823 GetFullName(this, szValue
));
827 bool wxRegKey::QueryValue(const wxChar
*szValue
, long *plValue
) const
829 if ( CONST_CAST
Open() ) {
830 DWORD dwType
, dwSize
= sizeof(DWORD
);
831 RegString pBuf
= (RegString
)plValue
;
832 m_dwLastError
= RegQueryValueEx((HKEY
) m_hKey
, WXSTRINGCAST szValue
, RESERVED
,
833 &dwType
, pBuf
, &dwSize
);
834 if ( m_dwLastError
!= ERROR_SUCCESS
) {
835 wxLogSysError(m_dwLastError
, _("Can't read value of key '%s'"),
840 // check that we read the value of right type
841 wxASSERT_MSG( IsNumericValue(szValue
),
842 wxT("Type mismatch in wxRegKey::QueryValue().") );
853 bool wxRegKey::QueryValue(const wxChar
*szValue
,
857 if ( CONST_CAST
Open() ) {
859 // first get the type and size of the data
860 DWORD dwType
, dwSize
;
861 m_dwLastError
= RegQueryValueEx((HKEY
) m_hKey
, WXSTRINGCAST szValue
, RESERVED
,
862 &dwType
, NULL
, &dwSize
);
863 if ( m_dwLastError
== ERROR_SUCCESS
) {
865 // must treat this case specially as GetWriteBuf() doesn't like
866 // being called with 0 size
870 RegString pBuf
= (RegString
)strValue
.GetWriteBuf(dwSize
);
871 m_dwLastError
= RegQueryValueEx((HKEY
) m_hKey
,
872 WXSTRINGCAST szValue
,
877 strValue
.UngetWriteBuf();
879 // expand the var expansions in the string unless disabled
881 if ( (dwType
== REG_EXPAND_SZ
) && !raw
)
883 DWORD dwExpSize
= ::ExpandEnvironmentStrings(strValue
, NULL
, 0);
884 bool ok
= dwExpSize
!= 0;
887 wxString strExpValue
;
888 ok
= ::ExpandEnvironmentStrings
891 strExpValue
.GetWriteBuf(dwExpSize
),
894 strExpValue
.UngetWriteBuf();
895 strValue
= strExpValue
;
900 wxLogLastError(_T("ExpandEnvironmentStrings"));
907 if ( m_dwLastError
== ERROR_SUCCESS
) {
908 // check that it was the right type
909 wxASSERT_MSG( !IsNumericValue(szValue
),
910 wxT("Type mismatch in wxRegKey::QueryValue().") );
916 // named registry values don't exist in Win16
917 wxASSERT( IsEmpty(szValue
) );
919 m_dwLastError
= RegQueryValue((HKEY
) m_hKey
, 0, strValue
.GetWriteBuf(256), &l
);
920 strValue
.UngetWriteBuf();
921 if ( m_dwLastError
== ERROR_SUCCESS
)
926 wxLogSysError(m_dwLastError
, _("Can't read value of '%s'"),
927 GetFullName(this, szValue
));
931 bool wxRegKey::SetValue(const wxChar
*szValue
, const wxString
& strValue
)
933 if ( CONST_CAST
Open() ) {
934 #if defined( __WIN32__)
935 m_dwLastError
= RegSetValueEx((HKEY
) m_hKey
, szValue
, (DWORD
) RESERVED
, REG_SZ
,
936 (RegString
)strValue
.c_str(),
937 (strValue
.Len() + 1)*sizeof(wxChar
));
938 if ( m_dwLastError
== ERROR_SUCCESS
)
941 // named registry values don't exist in Win16
942 wxASSERT( IsEmpty(szValue
) );
944 m_dwLastError
= RegSetValue((HKEY
) m_hKey
, NULL
, REG_SZ
, strValue
, NULL
);
945 if ( m_dwLastError
== ERROR_SUCCESS
)
950 wxLogSysError(m_dwLastError
, _("Can't set value of '%s'"),
951 GetFullName(this, szValue
));
955 wxString
wxRegKey::QueryDefaultValue() const
958 QueryValue(NULL
, str
);
962 // ----------------------------------------------------------------------------
964 // NB: all these functions require an index variable which allows to have
965 // several concurrently running indexations on the same key
966 // ----------------------------------------------------------------------------
968 bool wxRegKey::GetFirstValue(wxString
& strValueName
, long& lIndex
)
974 return GetNextValue(strValueName
, lIndex
);
977 bool wxRegKey::GetNextValue(wxString
& strValueName
, long& lIndex
) const
979 wxASSERT( IsOpened() );
981 // are we already at the end of enumeration?
985 #if defined( __WIN32__)
986 wxChar szValueName
[1024]; // @@ use RegQueryInfoKey...
987 DWORD dwValueLen
= WXSIZEOF(szValueName
);
989 m_dwLastError
= RegEnumValue((HKEY
) m_hKey
, lIndex
++,
990 szValueName
, &dwValueLen
,
993 NULL
, // [out] buffer for value
994 NULL
); // [i/o] it's length
996 if ( m_dwLastError
!= ERROR_SUCCESS
) {
997 if ( m_dwLastError
== ERROR_NO_MORE_ITEMS
) {
998 m_dwLastError
= ERROR_SUCCESS
;
1002 wxLogSysError(m_dwLastError
, _("Can't enumerate values of key '%s'"),
1009 strValueName
= szValueName
;
1011 // only one unnamed value
1012 wxASSERT( lIndex
== 0 );
1015 strValueName
.Empty();
1021 bool wxRegKey::GetFirstKey(wxString
& strKeyName
, long& lIndex
)
1027 return GetNextKey(strKeyName
, lIndex
);
1030 bool wxRegKey::GetNextKey(wxString
& strKeyName
, long& lIndex
) const
1032 wxASSERT( IsOpened() );
1034 // are we already at the end of enumeration?
1038 wxChar szKeyName
[_MAX_PATH
+ 1];
1041 DWORD sizeName
= WXSIZEOF(szKeyName
);
1042 m_dwLastError
= RegEnumKeyEx((HKEY
) m_hKey
, lIndex
++, szKeyName
, & sizeName
,
1043 0, NULL
, NULL
, NULL
);
1045 m_dwLastError
= RegEnumKey((HKEY
) m_hKey
, lIndex
++, szKeyName
, WXSIZEOF(szKeyName
));
1048 if ( m_dwLastError
!= ERROR_SUCCESS
) {
1049 if ( m_dwLastError
== ERROR_NO_MORE_ITEMS
) {
1050 m_dwLastError
= ERROR_SUCCESS
;
1054 wxLogSysError(m_dwLastError
, _("Can't enumerate subkeys of key '%s'"),
1061 strKeyName
= szKeyName
;
1065 // returns TRUE if the value contains a number (else it's some string)
1066 bool wxRegKey::IsNumericValue(const wxChar
*szValue
) const
1068 ValueType type
= GetValueType(szValue
);
1071 /* case Type_Dword_little_endian: == Type_Dword */
1072 case Type_Dword_big_endian
:
1080 // ============================================================================
1081 // implementation of global private functions
1082 // ============================================================================
1084 bool KeyExists(WXHKEY hRootKey
, const wxChar
*szKey
)
1086 // don't close this key itself for the case of empty szKey!
1087 if ( wxIsEmpty(szKey
) )
1091 if ( RegOpenKeyEx( (HKEY
) hRootKey
, szKey
, 0, 0, &hkeyDummy
) == ERROR_SUCCESS
) {
1092 RegCloseKey(hkeyDummy
);
1099 const wxChar
*GetFullName(const wxRegKey
*pKey
, const wxChar
*szValue
)
1101 static wxString s_str
;
1102 s_str
= pKey
->GetName();
1103 if ( !wxIsEmpty(szValue
) )
1104 s_str
<< wxT("\\") << szValue
;
1106 return s_str
.c_str();
1109 void RemoveTrailingSeparator(wxString
& str
)
1111 if ( !str
.IsEmpty() && str
.Last() == REG_SEPARATOR
)
1112 str
.Truncate(str
.Len() - 1);