os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/Ttesthandlersettings.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/Ttesthandlersettings.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,95 @@
     1.4 +/*
     1.5 +* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#include "ttesthandlersettings.h"
    1.23 +#include "t_bacline.h"
    1.24 +
    1.25 +_LIT(KWaitForKeyPressAtEndSwitch, "-w");
    1.26 +_LIT(KOOMSwitch, "-o");
    1.27 +_LIT(KInteractiveSwitch, "-i");
    1.28 +_LIT(KCancelSwitch, "-c");
    1.29 +_LIT(KSkippedSwitch, "-s");
    1.30 +_LIT(KExhaustiveSwitch, "-e");
    1.31 +
    1.32 +EXPORT_C CTestHandlerSettings* CTestHandlerSettings::NewLC()
    1.33 +	{
    1.34 +	CTestHandlerSettings* self = new(ELeave) CTestHandlerSettings();
    1.35 +	CleanupStack::PushL(self);
    1.36 +	self->ConstructL();
    1.37 +	return self;
    1.38 +	}
    1.39 +
    1.40 +EXPORT_C CTestHandlerSettings* CTestHandlerSettings::NewL(const CTestHandlerSettings& aOther)
    1.41 +	{
    1.42 +	CTestHandlerSettings* self = new(ELeave) CTestHandlerSettings();
    1.43 +	self->iWaitForKeyPressAtEnd = aOther.iWaitForKeyPressAtEnd;
    1.44 +	self->iOOM = aOther.iOOM;
    1.45 +	self->iCancel = aOther.iCancel;
    1.46 +	self->iSkip = aOther.iSkip;
    1.47 +	self->iExhaust = aOther.iExhaust;
    1.48 +	self->iInt = aOther.iInt;
    1.49 +	return self;
    1.50 +	}
    1.51 +
    1.52 +EXPORT_C CTestHandlerSettings::~CTestHandlerSettings()
    1.53 +	{
    1.54 +	}
    1.55 +
    1.56 +CTestHandlerSettings::CTestHandlerSettings()
    1.57 +	{
    1.58 +	iWaitForKeyPressAtEnd = iOOM = iCancel = iSkip = iExhaust = iInt = EFalse;
    1.59 +	}
    1.60 +
    1.61 +void CTestHandlerSettings::ConstructL()
    1.62 +	{
    1.63 +	CCommandLineArguments* cmdLine = CCommandLineArguments::NewL();
    1.64 +
    1.65 +	TInt argTotal=cmdLine->Count();
    1.66 +
    1.67 +	for (TInt loop=0 ; loop < argTotal ; ++loop)
    1.68 +		{
    1.69 +		TPtrC arg(cmdLine->Arg(loop));
    1.70 +		if (arg==KWaitForKeyPressAtEndSwitch)
    1.71 +			{
    1.72 +			iWaitForKeyPressAtEnd = ETrue;
    1.73 +			}
    1.74 +		else if (arg==KOOMSwitch)
    1.75 +			{
    1.76 +			iOOM = ETrue;
    1.77 +			}
    1.78 +		else if (arg==KInteractiveSwitch)
    1.79 +			{
    1.80 +			iInt = ETrue;
    1.81 +			}
    1.82 +		else if (arg==KCancelSwitch)
    1.83 +			{
    1.84 +			iCancel = ETrue;
    1.85 +			}
    1.86 +		else if (arg==KSkippedSwitch)
    1.87 +			{
    1.88 +			iSkip = ETrue;
    1.89 +			}
    1.90 +		else if (arg==KExhaustiveSwitch)
    1.91 +			{
    1.92 +			iExhaust = ETrue;
    1.93 +			}
    1.94 +		}
    1.95 +
    1.96 +	delete cmdLine;
    1.97 +	cmdLine = NULL;
    1.98 +	}