|
|
//***************************************************************************
//
// REG.CPP
//
// Utility CNTRegistry classes.
//
// a-raymcc 30-May-96 Created.
//
//***************************************************************************
#include <windows.h>
#include <stdio.h>
#include "ntreg.h"
//#include <dbgalloc.h>
//#include "adaputil.h"
CNTRegistry::CNTRegistry() : m_hPrimaryKey(0), m_hSubkey(0), m_nStatus(0), m_nLastError(no_error) {}
CNTRegistry::~CNTRegistry() { if (m_hSubkey) RegCloseKey(m_hSubkey); if (m_hPrimaryKey != m_hSubkey) RegCloseKey(m_hPrimaryKey); }
int CNTRegistry::Open(HKEY hStart, WCHAR *pszStartKey) { int nStatus = no_error;
m_nLastError = RegOpenKeyExW(hStart, pszStartKey, 0, KEY_ALL_ACCESS, &m_hPrimaryKey );
if (m_nLastError != 0) nStatus = failed;
m_hSubkey = m_hPrimaryKey;
return nStatus; }
int CNTRegistry::MoveToSubkey(WCHAR *pszNewSubkey) { int nStatus = no_error;
m_nLastError = RegOpenKeyExW(m_hPrimaryKey, pszNewSubkey, 0, KEY_ALL_ACCESS, &m_hSubkey );
if (m_nLastError != 0) nStatus = failed;
return nStatus; }
int CNTRegistry::GetDWORD(WCHAR *pwszValueName, DWORD *pdwValue) { int nStatus = no_error;
DWORD dwSize = sizeof(DWORD); DWORD dwType = 0;
m_nLastError = RegQueryValueExW(m_hSubkey, pwszValueName, 0, &dwType, LPBYTE(pdwValue), &dwSize); if (m_nLastError != 0) nStatus = failed;
if (dwType != REG_DWORD) nStatus = failed;
return nStatus; }
int CNTRegistry::GetStr(WCHAR *pwszValueName, WCHAR **pwszValue) { *pwszValue = 0; DWORD dwSize = 0; DWORD dwType = 0;
m_nLastError = RegQueryValueExW(m_hSubkey, pwszValueName, 0, &dwType, 0, &dwSize); if (m_nLastError != 0) return failed;
if ( ( dwType != REG_SZ ) && ( dwType != REG_EXPAND_SZ ) ) return failed;
WCHAR *p = new WCHAR[dwSize];
m_nLastError = RegQueryValueExW(m_hSubkey, pwszValueName, 0, &dwType, LPBYTE(p), &dwSize); if (m_nLastError != 0) { delete [] p; return failed; }
if(dwType == REG_EXPAND_SZ) { WCHAR* wszTemp = NULL;
// Get the initial length
DWORD nSize = ExpandEnvironmentStringsW( (WCHAR *)p, wszTemp, 0 ) + 10; wszTemp = new WCHAR[ nSize ]; ExpandEnvironmentStringsW( (WCHAR *)p, wszTemp, nSize - 1 ); delete [] p; *pwszValue = wszTemp; } else *pwszValue = p;
return no_error; }
int CNTRegistry::Enum( DWORD dwIndex, WCHAR **pwszValue, DWORD& dwSize ) { DWORD dwBuffSize = dwSize;
m_nLastError = RegEnumKeyExW(m_hSubkey, dwIndex, *pwszValue, &dwBuffSize, NULL, NULL, NULL, NULL );
while ( m_nLastError == ERROR_MORE_DATA ) { // Grow in 256 byte chunks
dwBuffSize += 256;
try { // Reallocate the buffer and retry
WCHAR* p = new WCHAR[dwBuffSize];
if ( NULL != *pwszValue ) { delete *pwszValue; }
*pwszValue = p; dwSize = dwBuffSize;
m_nLastError = RegEnumKeyExW(m_hSubkey, dwIndex, *pwszValue, &dwBuffSize, NULL, NULL, NULL, NULL );
} catch (...) { return out_of_memory; }
}
if ( ERROR_SUCCESS != m_nLastError ) { if ( ERROR_NO_MORE_ITEMS == m_nLastError ) return no_more_items; else return failed; }
return no_error; }
int CNTRegistry::GetMultiStr(WCHAR *pwszValueName, WCHAR** pwszValue, DWORD &dwSize) { //Find out the size of the buffer required
DWORD dwType; m_nLastError = RegQueryValueExW(m_hSubkey, pwszValueName, 0, &dwType, NULL, &dwSize);
//If the error is an unexpected one bail out
if ((m_nLastError != ERROR_SUCCESS) || (dwType != REG_MULTI_SZ)) { dwSize = 0; return failed; }
if (dwSize == 0) { dwSize = 0; return failed; }
//allocate the buffer required
WCHAR *pData = new WCHAR[dwSize]; //get the values
m_nLastError = RegQueryValueExW(m_hSubkey, pwszValueName, 0, &dwType, LPBYTE(pData), &dwSize);
//if an error bail out
if (m_nLastError != 0) { delete [] pData; dwSize = 0; return failed; }
*pwszValue = pData;
return no_error; }
int CNTRegistry::SetDWORD(WCHAR *pwszValueName, DWORD dwValue) { int nStatus = no_error;
m_nLastError = RegSetValueExW( m_hSubkey, pwszValueName, 0, REG_DWORD, (BYTE*)&dwValue, sizeof( dwValue ) );
if ( m_nLastError != ERROR_SUCCESS ) { nStatus = failed; }
return nStatus; }
int CNTRegistry::SetStr(WCHAR *pwszValueName, WCHAR *wszValue) { int nStatus = no_error;
m_nLastError = RegSetValueExW( m_hSubkey, pwszValueName, 0, REG_SZ, (BYTE*)wszValue, sizeof(WCHAR) * (wcslen(wszValue) + 1) );
if ( m_nLastError != ERROR_SUCCESS ) { nStatus = failed; }
return nStatus; }
|