2007-01-05 08:49:02 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
|
|
|
//
|
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "boinccas.h"
|
|
|
|
#include "CARestoreSetupState.h"
|
|
|
|
|
|
|
|
#define CUSTOMACTION_NAME _T("CARestoreSetupState")
|
|
|
|
#define CUSTOMACTION_PROGRESSTITLE _T("Restore the previous setups saved parameters.")
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Function:
|
|
|
|
//
|
|
|
|
// Description:
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
CARestoreSetupState::CARestoreSetupState(MSIHANDLE hMSIHandle) :
|
|
|
|
BOINCCABase(hMSIHandle, CUSTOMACTION_NAME, CUSTOMACTION_PROGRESSTITLE)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Function:
|
|
|
|
//
|
|
|
|
// Description:
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
CARestoreSetupState::~CARestoreSetupState()
|
|
|
|
{
|
|
|
|
BOINCCABase::~BOINCCABase();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Function:
|
|
|
|
//
|
|
|
|
// Description:
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
UINT CARestoreSetupState::OnExecution()
|
|
|
|
{
|
|
|
|
tstring strInstallDirectory;
|
|
|
|
tstring strSetupType;
|
|
|
|
tstring strLaunchProgram;
|
|
|
|
tstring strEnableLaunchAtLogon;
|
|
|
|
tstring strEnableScreensaver;
|
|
|
|
tstring strServiceDomain;
|
|
|
|
tstring strServiceUsername;
|
2007-01-05 19:36:50 +00:00
|
|
|
tstring strSetupStateStored;
|
|
|
|
|
|
|
|
GetRegistryValue( _T("SETUPSTATESTORED"), strSetupStateStored );
|
|
|
|
if (strSetupStateStored == _T("TRUE")) {
|
|
|
|
|
|
|
|
GetRegistryValue( _T("INSTALLDIR"), strInstallDirectory );
|
|
|
|
GetRegistryValue( _T("SETUPTYPE"), strSetupType );
|
|
|
|
GetRegistryValue( _T("LAUNCHPROGRAM"), strLaunchProgram );
|
|
|
|
GetRegistryValue( _T("ENABLELAUNCHATLOGON"), strEnableLaunchAtLogon );
|
|
|
|
GetRegistryValue( _T("ENABLESCREENSAVER"), strEnableScreensaver );
|
|
|
|
GetRegistryValue( _T("SERVICE_DOMAIN"), strServiceDomain );
|
|
|
|
GetRegistryValue( _T("SERVICE_USERNAME"), strServiceUsername );
|
|
|
|
|
|
|
|
SetProperty( _T("INSTALLDIR"), strInstallDirectory );
|
|
|
|
SetProperty( _T("SETUPTYPE"), strSetupType );
|
|
|
|
SetProperty( _T("LAUNCHPROGRAM"), strLaunchProgram );
|
|
|
|
SetProperty( _T("ENABLELAUNCHATLOGON"), strEnableLaunchAtLogon );
|
|
|
|
SetProperty( _T("ENABLESCREENSAVER"), strEnableScreensaver );
|
|
|
|
SetProperty( _T("SERVICE_DOMAIN"), strServiceDomain );
|
|
|
|
SetProperty( _T("SERVICE_USERNAME"), strServiceUsername );
|
|
|
|
|
|
|
|
}
|
2007-01-05 08:49:02 +00:00
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Function: RestoreSetupState
|
|
|
|
//
|
|
|
|
// Description:
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
UINT __stdcall RestoreSetupState(MSIHANDLE hInstall)
|
|
|
|
{
|
|
|
|
UINT uiReturnValue = 0;
|
|
|
|
|
|
|
|
CARestoreSetupState* pCA = new CARestoreSetupState(hInstall);
|
|
|
|
uiReturnValue = pCA->Execute();
|
|
|
|
delete pCA;
|
|
|
|
|
|
|
|
return uiReturnValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char *BOINC_RCSID_7bca879adb="$Id$";
|