-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSettingsStoreEx.cpp
138 lines (124 loc) · 3.93 KB
/
SettingsStoreEx.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// SettingsStoreEx.cpp : implementation of the CSettingsStoreEx class
//
#include "pch.h"
#include "SettingsStoreEx.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSettingsStoreEx
IMPLEMENT_DYNCREATE(CSettingsStoreEx, CSettingsStore)
/////////////////////////////////////////////////////////////////////////////
// CTestDatabaseDoc construction/destruction
CSettingsStoreEx::CSettingsStoreEx(BOOL bAdmin, BOOL bReadOnly)
:CSettingsStore(bAdmin, bReadOnly)
{
// TODO: add one-time construction code here
}
#ifdef _UNICODE
void CSettingsStoreEx::EnumKeys(std::vector<CString>& keys)
{
keys.clear();
DWORD dwCount = 0;
if (ERROR_SUCCESS != RegQueryInfoKey(m_reg.m_hKey, NULL, NULL, NULL,
&dwCount, NULL, NULL, NULL, NULL, NULL, NULL, NULL))
return;
for (DWORD i = 0; i < dwCount; i++)
{
std::vector<wchar_t> buff(_MAX_PATH);
DWORD dwLength = static_cast<DWORD>(buff.size());
if (ERROR_SUCCESS == m_reg.EnumKey(i, buff.data(), &dwLength))
keys.push_back(buff.data());
}
}
void CSettingsStoreEx::EnumValues(std::vector<CString>& values)
{
values.clear();
DWORD dwCount = 0;
if (ERROR_SUCCESS != RegQueryInfoKey(m_reg.m_hKey, NULL, NULL, NULL,
NULL, NULL, NULL, &dwCount, NULL, NULL, NULL, NULL))
return;
for (DWORD i = 0; i < dwCount; ++i)
{
std::vector<wchar_t> buff(_MAX_PATH);
DWORD dwLength = static_cast<DWORD>(buff.size());
if (ERROR_SUCCESS == RegEnumValue(m_reg.m_hKey, i, buff.data(), &dwLength,
NULL, NULL, NULL, NULL))
values.push_back(buff.data());
}
}
// return a pair value -> data
void CSettingsStoreEx::EnumValues(std::unordered_map<std::wstring, std::wstring>& values)
{
values.clear();
DWORD dwCount = 0;
if (ERROR_SUCCESS != RegQueryInfoKey(m_reg.m_hKey, NULL, NULL, NULL,
NULL, NULL, NULL, &dwCount, NULL, NULL, NULL, NULL))
return;
for (DWORD i = 0; i < dwCount; ++i)
{
std::vector<wchar_t> value(_MAX_PATH);
std::vector<wchar_t> data(_MAX_PATH);
DWORD dwLengthValue = static_cast<DWORD>(value.size());
DWORD dwLengthData = static_cast<DWORD>(data.size());
if (ERROR_SUCCESS == RegEnumValue(m_reg.m_hKey, i,
value.data(), &dwLengthValue, NULL, NULL,
reinterpret_cast<LPBYTE>(data.data()), &dwLengthData))
values[value.data()] = data.data();
}
}
#else
void CSettingsStoreEx::EnumKeys(std::vector<CString>& keys)
{
keys.clear();
DWORD dwCount = 0;
if (ERROR_SUCCESS != RegQueryInfoKey(m_reg.m_hKey, NULL, NULL, NULL,
&dwCount, NULL, NULL, NULL, NULL, NULL, NULL, NULL))
return;
for (DWORD i = 0; i < dwCount; i++)
{
std::vector<char> buff(_MAX_PATH);
DWORD dwLength = buff.size();
if (ERROR_SUCCESS == m_reg.EnumKey(i, buff.data(), &dwLength))
keys.push_back(buff.data());
}
}
void CSettingsStoreEx::EnumValues(std::vector<CString>& values)
{
values.clear();
DWORD dwCount = 0;
if (ERROR_SUCCESS != RegQueryInfoKey(m_reg.m_hKey, NULL, NULL, NULL,
NULL, NULL, NULL, &dwCount, NULL, NULL, NULL, NULL))
return;
for (DWORD i = 0; i < dwCount; ++i)
{
std::vector<char> buff(_MAX_PATH);
DWORD dwLength = buff.size();
if (ERROR_SUCCESS == RegEnumValue(m_reg.m_hKey, i, buff.data(), &dwLength,
NULL, NULL, NULL, NULL))
values.push_back(buff.data());
}
}
// return a pair value -> data
void CSettingsStoreEx::EnumValues(std::unordered_map<std::string, std::string>& values)
{
values.clear();
DWORD dwCount = 0;
if (ERROR_SUCCESS != RegQueryInfoKey(m_reg.m_hKey, NULL, NULL, NULL,
NULL, NULL, NULL, &dwCount, NULL, NULL, NULL, NULL))
return;
for (DWORD i = 0; i < dwCount; ++i)
{
std::vector<char> value(_MAX_PATH);
std::vector<char> data(_MAX_PATH);
DWORD dwLengthValue = value.size();
DWORD dwLengthData = data.size();
if (ERROR_SUCCESS == RegEnumValue(m_reg.m_hKey, i,
value.data(), &dwLengthValue, NULL, NULL,
reinterpret_cast<LPBYTE>(data.data()), &dwLengthData))
values[value.data()] = data.data();
}
}
#endif // _UNICODE