LWQ
2025-07-14 aef42eef51d1b86ac7217a88ce17c5156c30fe6d
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
// HMRegiConfig.cpp: implementation of the CConfig class.
//
//////////////////////////////////////////////////////////////////////
 
#include "stdafx.h"
#include "Config.h"
 
#include "FileList.h"
#include "FileMap.h"
#include "Registery.h"
#include "IniManager.h"
 
//#ifdef _DEBUG
//#undef THIS_FILE
//static char THIS_FILE[]=__FILE__;
//#define new DEBUG_NEW
//#endif
 
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
 
CConfig::CConfig()
{
    m_pConfig = NULL;
    m_strFilePath = _T("");
}
 
CConfig::~CConfig()
{
    if(m_pConfig) {delete m_pConfig; m_pConfig = NULL; }
}
 
BOOL CConfig::SetLogWriteMode(BOOL bUse,CString strFilePath)
{
    if(strFilePath.IsEmpty() == TRUE)
        return FALSE;
    
    if(m_Classification & FileMap_Mode)
    {
        m_pConfig->SetLogMode(bUse);
        m_pConfig->SetLogFilePath(strFilePath);
    }
    else if(m_Classification & FileManager_Mode)
    {
        m_pConfig->SetLogMode(bUse);
        m_pConfig->SetLogFilePath(strFilePath);
    }
 
    strFilePath.Empty();
        
    return TRUE;
}
 
BOOL CConfig::SetRegiConfig(HKEY hKey, CString strKey, TCHAR* szFilename, Grouping Select)
{
    BOOL bRet = TRUE;
 
    if(m_pConfig) {delete m_pConfig; m_pConfig = NULL; }
 
    switch(Select)
    {
    case Registery_mode:
        m_pConfig = static_cast<CBasedConfig *>(new CRegistery);
        break;
    case FileMap_Mode:
        m_pConfig = static_cast<CBasedConfig *>(new CFileMap);
        break;
    case FileManager_Mode:
        m_pConfig = static_cast<CBasedConfig *>(new CFileList);
        break;
    case Ini_Mode:
        m_pConfig = static_cast<CBasedConfig *>(new CIniManager);
        break;
    }
 
    bRet = m_pConfig->Initialize(hKey, strKey, szFilename);
    m_Classification = Select;
 
    m_strFilePath = szFilename;
 
 
    strKey.Empty();
    return bRet;
}
 
BOOL CConfig::DeleteAllItem()
{
    if(m_pConfig == NULL)
        return FALSE;
 
    m_pConfig->RemoveAllItem();
 
    return TRUE;
}
 
BOOL CConfig::DeleteValue(CString strvalue)
{
    BOOL bRet = FALSE;
    
    bRet = m_pConfig->RemoveItem(strvalue);
 
    return bRet;
}
 
BOOL CConfig::DeleteValue(CString strvalue, int nIdx)
{
    BOOL bRet = FALSE;
    
    bRet = m_pConfig->RemoveItem(nIdx, strvalue);
    
    return bRet;
 
}
 
BOOL CConfig::SetItemValue(CString strName, CString strValue)
{
    BOOL b4 = TRUE;
    
    b4 = m_pConfig->SetItemValue(strName, strValue);
 
    return b4;
}
//get 
BOOL CConfig::SetItemValue(CString strName, int nValue)
{
    BOOL b4 = TRUE;
    
    b4 = m_pConfig->SetItemValue(strName, nValue);
    
    return b4;
}
 
BOOL CConfig::SetItemValue(CString strName, unsigned short sValue)
{
    BOOL b4 = TRUE;
    
    b4 = m_pConfig->SetItemValue(strName, sValue);
    
    return b4;
}
 
BOOL CConfig::SetItemValue(CString strName, double dValue)
{
    BOOL b4 = TRUE;
    
    b4 = m_pConfig->SetItemValue(strName, dValue);
    
    return b4;
}
 
BOOL CConfig::SetItemValue(int nIdx, CString strName, CString strValue)
    BOOL b4 = TRUE;
    
    b4 = m_pConfig->SetItemValue(nIdx, strName, strValue);
    
    return b4;
 
}
 
BOOL CConfig::SetItemValue(int nIdx, CString strName, int nValue)
{
    BOOL b4 = TRUE;
    
    b4 = m_pConfig->SetItemValue(nIdx, strName, nValue);
    
    return b4;
}
 
BOOL CConfig::SetItemValue(int nIdx, CString strName, unsigned short sValue)
{
    BOOL b4 = TRUE;
    
    b4 = m_pConfig->SetItemValue(nIdx, strName, sValue);
    
    return b4;
}
 
BOOL CConfig::SetItemValue(int nIdx, CString strName, double dValue)
{
    BOOL b4 = TRUE;
    
    b4 = m_pConfig->SetItemValue(nIdx, strName, dValue);
    
    return b4;
}
 
//////////////////////////////////////////////////////////////////////////
int    CConfig::GetItemValue(CString strName, CString& strValue, CString strDefault)
{
    int nRet = -1;
    char strTemp[1024] = {0, };
 
    nRet = m_pConfig->GetItemValue(strName, strValue, strDefault);
    
    return nRet;
}
 
int    CConfig::GetItemValue(CString strName, int& nValue, int nDefault)
{
    int nRet = -1;
 
    nRet = m_pConfig->GetItemValue(strName, nValue, nDefault);
        
    return nRet;
}
 
int    CConfig::GetItemValue(CString strName, unsigned short &nValue, unsigned short sDefault)
{
    int nRet = -1;
 
    nRet = m_pConfig->GetItemValue(strName, nValue, sDefault);
 
    return nRet;
}
 
int    CConfig::GetItemValue(CString strName, double& dValue, double dDefault)
{
    int nRet = -1;
 
    nRet = m_pConfig->GetItemValue(strName, dValue, dDefault);
 
    return nRet;
}
 
int    CConfig::GetItemValue(int nIdx, CString strName, CString& strValue, CString strDefault)
{
    int nRet = -1;
    
    nRet = m_pConfig->GetItemValue(nIdx, strName, strValue, strDefault);
 
    return nRet;
}
 
int    CConfig::GetItemValue(int nIdx, CString strName, int& nValue, int nDefault)
{
    int nRet = -1;
 
    nRet = m_pConfig->GetItemValue(nIdx, strName, nValue, nDefault);
 
    return nRet;
}
 
int     CConfig::GetItemValue(int nIdx, CString strName, unsigned short &nValue, unsigned short sDefault)
{
    int nRet = -1;
    
    nRet = m_pConfig->GetItemValue(nIdx, strName, nValue, sDefault);
 
    return nRet;
}
 
int     CConfig::GetItemValue(int nIdx, CString strName, double& dValue, double dDefault)
{
    int nRet = -1;
 
    nRet = m_pConfig->GetItemValue(nIdx, strName, dValue, dDefault);
 
    return nRet;
}
 
BOOL CConfig::WriteToFile()
{
    return m_pConfig->WriteToFile();
}
 
void CConfig::SetRewriteMode( BOOL bRewrite )
{    
    m_pConfig->SetRewriteMode(bRewrite);
}
 
BOOL CConfig::GetRewriteMode()
{
    return m_pConfig->GetRewriteMode();
}
 
CString CConfig::GetFilePath()
{
    return m_strFilePath;
}