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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
|
/* ****************************************************************************
* eID Middleware Project.
* Copyright (C) 2008-2009 FedICT.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version
* 3.0 as published by the Free Software Foundation.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, see
* http://www.gnu.org/licenses/.
**************************************************************************** */
/** \file ConfigReg.cpp
Class to set and get configuration-data from the registry(Windows) or the ini-file(Linux and Mac).
*/
//#include <utility>
#include <algorithm>
#include <fstream>
#include <functional>
#include <iostream>
#include <iterator>
#include <locale>
#include <string>
#include <shlobj.h>
#include <stdlib.h>
#include <exception>
#include <windows.h>
#include "MWException.h"
#include "Config.h"
#include "eidErrors.h"
#include "Util.h"
const wchar_t *SC_CONF_REG = L"Software\\BEID";
namespace eIDMW
{
//constructor
CConfig::CConfig(void)
{
}
CConfig::~CConfig(void)
{
}
/** Expand $HOME expression in the section string
Search the first occurence of the $-sign, retrieve the $-string, replace with the correct value
$home\eidpath
\return std::wstring requested parameter
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter is not found
\sa SetString(), DelString, SetLong(), GetLong(), DelLong()
*************************************************************************************/
std::wstring ExpandSection(
const std::wstring & czSectionOriginal /**< In: the configuration-section where you can find above specified parameter */
)
{
HRESULT hResult;
int iResult;
basic_string <char>::size_type iTotLenght = czSectionOriginal.length();
basic_string <char>::size_type iStrLenght;
wchar_t wsSectionCustom[256];
//--- Find if anything to expand
if ((iTotLenght == 0)||(czSectionOriginal[0] != '$'))
{
//nothing to replace
return(czSectionOriginal);
}
//--- check for EIDMW_CNF_MACRO_INSTALL
iStrLenght = wcslen(EIDMW_CNF_MACRO_INSTALL);
iResult = czSectionOriginal.compare(0, iStrLenght, EIDMW_CNF_MACRO_INSTALL);
if (iResult == 0)
{
//replace EIDMW_CNF_MACRO_INSTALL
std::wstring czSectionExpanded = CConfig::GetString(EIDMW_CNF_GENERAL_INSTALLDIR, EIDMW_CNF_SECTION_GENERAL);
//add part after the $-macro
czSectionExpanded.append(czSectionOriginal.substr(iStrLenght, iTotLenght-iStrLenght));//add part after the $-macro
return(czSectionExpanded);
}
//--- check for EIDMW_CNF_MACRO_HOME
// returns by default "C:\WINDOWS\system32\config\systemprofile\Application Data" for services.
iStrLenght = wcslen(EIDMW_CNF_MACRO_HOME);
iResult = czSectionOriginal.compare(0, iStrLenght, EIDMW_CNF_MACRO_HOME);
if (iResult == 0)
{
//replace EIDMW_CNF_MACRO_HOME
hResult = SHGetFolderPath(NULL, CSIDL_APPDATA, NULL, SHGFP_TYPE_DEFAULT, wsSectionCustom);
//non-user SW(eg.: services) returns: C:\WINDOWS\system32\config\systemprofile\Application Data, replace by common dir
if((hResult != S_OK) || ((hResult == S_OK) && (wcsstr(wsSectionCustom, L":\\WINDOWS") != NULL)))
{
//try common path when problems or when no user found
hResult = SHGetFolderPath(NULL, CSIDL_COMMON_APPDATA, NULL, SHGFP_TYPE_DEFAULT, wsSectionCustom);
if(hResult != S_OK)
{
//can not replace, return original string
return(czSectionOriginal);
}
}
std::wstring czSectionExpanded(wsSectionCustom);
// czSectionExpanded.append(WDIRSEP);
//czSectionExpanded.append(EIDMW_CNF_MACRO_COMMON_SUBDIR);
//add part after the $-macro
czSectionExpanded.append(czSectionOriginal.substr(iStrLenght, iTotLenght-iStrLenght));//add part after the $-macro
return(czSectionExpanded);
}
//--- check for EIDMW_CNF_MACRO_COMMON
iStrLenght = wcslen(EIDMW_CNF_MACRO_COMMON);
iResult = czSectionOriginal.compare(0, iStrLenght, EIDMW_CNF_MACRO_COMMON);
if (iResult == 0)
{
//replace EIDMW_CNF_MACRO_COMMON
//hResult = SHGetFolderPath(NULL, CSIDL_COMMON_APPDATA, NULL, SHGFP_TYPE_DEFAULT, wsSectionCustom);
//if(hResult != S_OK)
//{
// //can not replace, return original string
// return(czSectionOriginal);
//}
//std::wstring czSectionExpanded(wsSectionCustom);
//////////////////////////////////////////////////////
//Problem of access right for the user with limited right
hResult = SHGetFolderPath(NULL, CSIDL_APPDATA, NULL, SHGFP_TYPE_DEFAULT, wsSectionCustom);
//non-user SW(eg.: services) returns: C:\WINDOWS\system32\config\systemprofile\Application Data, replace by common dir
if((hResult != S_OK) || ((hResult == S_OK) && (wcsstr(wsSectionCustom, L":\\WINDOWS") != NULL)))
{
//try common path when problems or when no user found
hResult = SHGetFolderPath(NULL, CSIDL_COMMON_APPDATA, NULL, SHGFP_TYPE_DEFAULT, wsSectionCustom);
if(hResult != S_OK)
{
//can not replace, return original string
return(czSectionOriginal);
}
}
std::wstring czSectionExpanded(wsSectionCustom);
//////////////////////////////////////////////////////
czSectionExpanded.append(WDIRSEP);
czSectionExpanded.append(EIDMW_CNF_MACRO_COMMON_SUBDIR);
//add part after the $-macro
czSectionExpanded.append(czSectionOriginal.substr(iStrLenght, iTotLenght-iStrLenght));//add part after the $-macro
return(czSectionExpanded);
}
return(czSectionOriginal);
}
/** Retrieve from the configuration a parameter of the type STRING in the user settings
\return std::wstring requested parameter
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter is not found
\sa SetString(), DelString, SetLong(), GetLong(), DelLong()
*************************************************************************************/
std::wstring GetStringInt(
CConfig::tLocation location,
const std::wstring & csName, /**< In: parameter name */
const std::wstring & czSection, /**< In: the configuration-section where you can find above specified parameter */
bool bExpand /**< In: expand $home macro's to the value for this user/PC */
)
{
wchar_t wcsKeyRegName[MAX_PATH];
BYTE abValueDat[512];
DWORD dwValDatLen = 0;
DWORD dwType;
LONG lRes;
HKEY hRegKey;
HKEY hRegKeyRoot;
if(location == CConfig::SYSTEM)
hRegKeyRoot = HKEY_LOCAL_MACHINE;
else
hRegKeyRoot = HKEY_CURRENT_USER ;
//--- Open the KeyInfo entry
swprintf_s(wcsKeyRegName, sizeof(wcsKeyRegName)/sizeof(wchar_t), L"%s\\%s", SC_CONF_REG, czSection.c_str());
lRes = RegOpenKeyEx(hRegKeyRoot, wcsKeyRegName, 0L, KEY_READ , &hRegKey);
if (lRes != ERROR_SUCCESS){
throw CMWEXCEPTION(EIDMW_CONF);
}
//--- get the value
dwValDatLen = sizeof(abValueDat);
dwType = REG_SZ;
lRes = RegQueryValueEx(hRegKey, csName.c_str(), 0L, &dwType, abValueDat, &dwValDatLen);
if ((lRes != ERROR_SUCCESS)){
//try current user if no value found and not yet in current user
RegCloseKey(hRegKey);
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
}
if (dwValDatLen > 2) //remove ending "00"
dwValDatLen -= 2;
RegCloseKey(hRegKey);
const std::wstring wsResult((const wchar_t*)abValueDat, (size_t) (dwValDatLen/2)); //convert byte to double byte
if(bExpand)
return( ExpandSection(wsResult) );
else
return( wsResult );
}
/** Retrieve from the configuration a parameter of the type STRING
\return std::wstring requested parameter
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter is not found
\sa SetString(), DelString, SetLong(), GetLong(), DelLong()
*************************************************************************************/
std::wstring GetStringInt(
const std::wstring & csName, /**< In: parameter name */
const std::wstring & czSection, /**< In: the configuration-section where you can find above specified parameter */
bool bExpand /**< In: expand $home macro's to the value for this user/PC */
)
{
try
{
return GetStringInt(CConfig::USER,csName,czSection,bExpand);
}
catch(...)
{
return GetStringInt(CConfig::SYSTEM,csName,czSection,bExpand);
}
}
std::wstring CConfig::GetString(
tLocation location,
const struct Param_Str param /**< In: parameter struct */
)
{
return(GetString(location,param.csParam,param.csSection,param.csDefault));
}
std::wstring CConfig::GetString(
tLocation location,
const std::wstring & csName, /**< In: parameter name */
const std::wstring & czSection /**< In: the configuration-section where you can find above specified parameter */
)
{
return(GetStringInt(location,csName, czSection, true));
}
/** Retrieve from the configuration a parameter of the type STRING, use the default-value if nothing is found
\return std::wstring requested parameter
\sa SetString(), DelString, SetLong(), GetLong(), DelLong()
*************************************************************************************/
std::wstring CConfig::GetString(
tLocation location,
const std::wstring &csName, /**< In: parameter name */
const std::wstring &czSection, /**< In: the configuration-section where you can find above specified parameter */
const std::wstring &csDefaultValue, /**< In: default value when the parameter or section is not found */
bool bExpand /**< In: expand $home macro's to the value for this user/PC */
)
{
try{
return(GetStringInt(location,csName, czSection, bExpand));
}
catch(...){ //return default value if any error happen
if(bExpand)
return( ExpandSection(csDefaultValue) );
else
return( csDefaultValue );
//return(csDefaultValue);
}
}
std::wstring CConfig::GetString(
const struct Param_Str param /**< In: parameter struct */
)
{
return(GetString(param.csParam,param.csSection,param.csDefault));
}
std::wstring CConfig::GetString(
const std::wstring & csName, /**< In: parameter name */
const std::wstring & czSection /**< In: the configuration-section where you can find above specified parameter */
)
{
return(GetStringInt(csName, czSection, true));
}
/** Retrieve from the configuration a parameter of the type STRING, use the default-value if nothing is found
\return std::wstring requested parameter
\sa SetString(), DelString, SetLong(), GetLong(), DelLong()
*************************************************************************************/
std::wstring CConfig::GetString(
const std::wstring &csName, /**< In: parameter name */
const std::wstring &czSection, /**< In: the configuration-section where you can find above specified parameter */
const std::wstring &csDefaultValue, /**< In: default value when the parameter or section is not found */
bool bExpand /**< In: expand $home macro's to the value for this user/PC */
)
{
try{
return(GetStringInt(csName, czSection, bExpand));
}
catch(...){ //return default value if any error happen
if(bExpand)
return( ExpandSection(csDefaultValue) );
else
return( csDefaultValue );
//return(csDefaultValue);
}
}
/** Retrieve from the configuration a parameter of the type LONG
\return long requested parameter
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter is not found
\sa SetString(), GetString(),DelString, SetLong(), DelLong()
*************************************************************************************/
long CConfig::GetLong(
const struct Param_Num param /**< In: parameter struct */
)
{
return(GetLong(param.csParam,param.csSection,param.lDefault));
}
long CConfig::GetLong(
const std::wstring & csName, /**< In: parameter name */
const std::wstring &czSection /**< In: the configuration-section where you can find above specified parameter */
)
{
try
{
return GetLong(CConfig::USER,csName,czSection);
}
catch(...)
{
return GetLong(CConfig::SYSTEM,csName,czSection);
}
}
/** Retrieve from the configuration a parameter of the type LONG, use the default-value if nothing is found
\return long: requested parameter
\sa SetString(), GetString(),DelString, SetLong(), DelLong()
*************************************************************************************/
long CConfig::GetLong(const std::wstring & csName, const std::wstring &czSection, long lDefaultValue)
{
try{
return(GetLong(csName, czSection));
}
catch(...){
return(lDefaultValue);
}
}
/** Retrieve from the configuration a parameter of the type LONG
\return long requested parameter
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter is not found
\sa SetString(), GetString(),DelString, SetLong(), DelLong()
*************************************************************************************/
long CConfig::GetLong(
tLocation location,
const struct Param_Num param /**< In: parameter struct */
)
{
return(GetLong(location, param.csParam,param.csSection,param.lDefault));
}
long CConfig::GetLong(
tLocation location,
const std::wstring & csName, /**< In: parameter name */
const std::wstring &czSection /**< In: the configuration-section where you can find above specified parameter */
)
{
wchar_t wcsKeyRegName[MAX_PATH];
DWORD dwValDatLen;
DWORD dwType;
LONG lRes;
HKEY hRegKey;
long lResult = 0;
HKEY hRegKeyRoot;
if(location == CConfig::SYSTEM)
hRegKeyRoot = HKEY_LOCAL_MACHINE;
else
hRegKeyRoot = HKEY_CURRENT_USER ;
//--- Open the KeyInfo entry
swprintf_s(wcsKeyRegName, sizeof(wcsKeyRegName)/sizeof(wchar_t), L"%s\\%s", SC_CONF_REG, czSection.c_str());
lRes = RegOpenKeyEx(hRegKeyRoot, wcsKeyRegName, 0L, KEY_READ , &hRegKey);
if (lRes != ERROR_SUCCESS){
throw CMWEXCEPTION(EIDMW_CONF);
}
//--- get the value
dwValDatLen = sizeof(lResult);
dwType = REG_DWORD;
lRes = RegQueryValueEx(hRegKey, csName.c_str(), 0L, &dwType, (LPBYTE)&lResult, &dwValDatLen);
if ((lRes != ERROR_SUCCESS)){
//try current user if no value found and not yet in current user
RegCloseKey(hRegKey);
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
}
RegCloseKey(hRegKey);
return( lResult );
}
/** Retrieve from the configuration a parameter of the type LONG, use the default-value if nothing is found
\return long: requested parameter
\sa SetString(), GetString(),DelString, SetLong(), DelLong()
*************************************************************************************/
long CConfig::GetLong(tLocation location, const std::wstring & csName, const std::wstring &czSection, long lDefaultValue)
{
try{
return(GetLong(location, csName, czSection));
}
catch(...){
return(lDefaultValue);
}
}
/** Modify/add into the configuration a parameter of the type STRING
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter could not be modified
\sa GetString(), DelString, SetLong(), GetLong(), DelLong()
*************************************************************************************/
void CConfig::SetString(
tLocation location, /**< In: tells to use the SYSTEM or USER configuration = CConfig::SYSTEM or CConfig::USER*/
const struct Param_Str param, /**< In: parameter struct */
const std::wstring &csValue /**< In: Value that the parameter in the configuration should be set to */
)
{
return(SetString(location,param.csParam,param.csSection,csValue));
}
void CConfig::SetString(
tLocation location, /**< In: tells to use the SYSTEM or USER configuration = CConfig::SYSTEM or CConfig::USER*/
const std::wstring &csName, /**< In: parameter name */
const std::wstring &czSection, /**< In: the configuration-section where you can find above specified parameter */
const std::wstring &csValue /**< In: Value that the parameter in the configuration should be set to */
)
{
wchar_t wcsKeyRegName[MAX_PATH];
LONG lRes;
HKEY hRegKeyTree;
HKEY hRegKey;
if(location == SYSTEM)
hRegKeyTree = HKEY_LOCAL_MACHINE;
else
hRegKeyTree = HKEY_CURRENT_USER ;
swprintf_s(wcsKeyRegName, sizeof(wcsKeyRegName)/sizeof(wchar_t), L"%s\\%s", SC_CONF_REG, czSection.c_str());
//--- Open the KeyInfo entry
lRes = RegCreateKeyEx(hRegKeyTree, wcsKeyRegName, 0L, NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &hRegKey, NULL);
if (lRes != ERROR_SUCCESS){
RegCloseKey(hRegKey);
throw CMWEXCEPTION(EIDMW_CONF);
}
//--- Set the value
lRes = RegSetValueEx(hRegKey, csName.c_str(), NULL, REG_SZ, (const BYTE *)csValue.c_str(), (DWORD)((csValue.length()+1)*sizeof(wchar_t))); //terminating 0 must also be included !
if (lRes != ERROR_SUCCESS){
RegCloseKey(hRegKey);
throw CMWEXCEPTION(EIDMW_CONF);
}
RegCloseKey(hRegKey);
}
/** Modify/add into the configuration a parameter of the type LONG
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter could not be modified
\sa GetString(), SetString(), DelString, GetLong(), DelLong()
*************************************************************************************/
void CConfig::SetLong(
tLocation location, /**< In: tells to use the SYSTEM or USER configuration = CConfig::SYSTEM or CConfig::USER*/
const struct Param_Num param, /**< In: parameter struct */
long lValue /**< In: Value that the parameter in the configuration should be set to */
)
{
return(SetLong(location,param.csParam,param.csSection,lValue));
}
void CConfig::SetLong(
tLocation location, /**< In: tells to use the SYSTEM or USER configuration = CConfig::SYSTEM or CConfig::USER*/
const std::wstring &csName, /**< In: parameter name */
const std::wstring &czSection, /**< In: the configuration-section where you can find above specified parameter */
long lValue /**< In: Value that the parameter in the configuration should be set to */
)
{
wchar_t wcsKeyRegName[MAX_PATH];
LONG lRes;
HKEY hRegKeyTree;
HKEY hRegKey;
if(location == SYSTEM)
hRegKeyTree = HKEY_LOCAL_MACHINE;
else
hRegKeyTree = HKEY_CURRENT_USER ;
swprintf_s(wcsKeyRegName, sizeof(wcsKeyRegName)/sizeof(wchar_t), L"%s\\%s", SC_CONF_REG, czSection.c_str());
//--- Open the KeyInfo entry
lRes = RegCreateKeyEx(hRegKeyTree, wcsKeyRegName, 0L, NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &hRegKey, NULL);
if (lRes != ERROR_SUCCESS){
RegCloseKey(hRegKey);
throw CMWEXCEPTION(EIDMW_CONF);
}
//--- Set the value
lRes = RegSetValueEx(hRegKey, csName.c_str(), NULL, REG_DWORD, (const BYTE *)&lValue, (DWORD)sizeof(long));
if (lRes != ERROR_SUCCESS){
RegCloseKey(hRegKey);
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
}
RegCloseKey(hRegKey);
} // namespace eidMW
/** Remove in the configuration a parameter of the type STRING
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter could not be modified
\sa SetString(), GetString(), SetLong(), GetLong(), DelLong()
*************************************************************************************/
void CConfig::DelString(
tLocation location, /**< In: tells to use the SYSTEM or USER configuration = CConfig::SYSTEM or CConfig::USER*/
const struct Param_Str param /**< In: parameter struct */
)
{
return(DelString(location,param.csParam,param.csSection));
}
void CConfig::DelString(
tLocation location, /**< In: tells to use the SYSTEM or USER configuration = CConfig::SYSTEM or CConfig::USER*/
const std::wstring &csName, /**< In: parameter name */
const std::wstring &czSection /**< In: the configuration-section where you can find above specified parameter */
)
{
wchar_t wcsKeyRegName[MAX_PATH];
LONG lRes;
HKEY hRegKeyTree;
HKEY hRegKey;
if(location == SYSTEM)
hRegKeyTree = HKEY_LOCAL_MACHINE;
else
hRegKeyTree = HKEY_CURRENT_USER ;
//--- Open the KeyInfo entry
swprintf_s(wcsKeyRegName, sizeof(wcsKeyRegName)/sizeof(wchar_t), L"%s\\%s", SC_CONF_REG, czSection.c_str());
lRes = RegOpenKeyEx(hRegKeyTree, wcsKeyRegName, 0L, KEY_SET_VALUE, &hRegKey);
if (lRes != ERROR_SUCCESS){
RegCloseKey(hRegKey);
throw CMWEXCEPTION(EIDMW_CONF);
}
//--- delete the value
lRes = RegDeleteValue(hRegKey, csName.c_str());
if (lRes != ERROR_SUCCESS){
RegCloseKey(hRegKey);
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
}
RegCloseKey(hRegKey);
}
/** Remove in the configuration a parameter of the type LONG
\retval EIMDW_NOT_OK exception; when section is not found
\retval EIDMW_ERR_PARAM_BAD exception; when parameter could not be modified
\sa SetString(), GetString(), DelString, SetLong(), GetLong()
*************************************************************************************/
void CConfig::DelLong(
tLocation location, /**< In: tells to use the SYSTEM or USER configuration = CConfig::SYSTEM or CConfig::USER*/
const struct Param_Num param /**< In: parameter struct */
)
{
return(DelLong(location,param.csParam,param.csSection));
}
void CConfig::DelLong(
tLocation location, /**< In: tells to use the SYSTEM or USER configuration = CConfig::SYSTEM or CConfig::USER*/
const std::wstring &csName, /**< In: parameter name */
const std::wstring &czSection /**< In: the configuration-section where you can find above specified parameter */
)
{
DelString(location, csName, czSection);
}
}
|