sl@0: /* sl@0: * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: #include "t_sleep.h" sl@0: #include "t_input.h" sl@0: #include "t_output.h" sl@0: #include sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////////// sl@0: // CSleep sl@0: ///////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: _LIT8(KSecondsStart, ""); sl@0: sl@0: CTestAction* CSleep::NewL(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CTestAction* self = CSleep::NewLC(aConsole, aOut, aTestActionSpec); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: CTestAction* CSleep::NewLC(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CSleep* self = new (ELeave) CSleep(aConsole, aOut); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aTestActionSpec); sl@0: return self; sl@0: } sl@0: sl@0: CSleep::~CSleep() sl@0: { sl@0: iTimer.Close(); sl@0: } sl@0: sl@0: CSleep::CSleep(CConsoleBase& aConsole, Output& aOut) : sl@0: CTestAction(aConsole, aOut) sl@0: { sl@0: iState = ESleeping; sl@0: } sl@0: sl@0: void CSleep::ConstructL(const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CTestAction::ConstructL(aTestActionSpec); sl@0: sl@0: iExpectedResult = KErrNone; sl@0: TLex8 lex(Input::ParseElement(aTestActionSpec.iActionBody, KSecondsStart)); sl@0: lex.Val(iSeconds); sl@0: User::LeaveIfError(iTimer.CreateLocal()); sl@0: } sl@0: sl@0: void CSleep::PerformAction(TRequestStatus& aStatus) sl@0: { sl@0: switch (iState) sl@0: { sl@0: case ESleeping: sl@0: { sl@0: iState = EFinished; sl@0: iTimer.After(aStatus, iSeconds*1000*1000); sl@0: } sl@0: break; sl@0: case EFinished: sl@0: { sl@0: TRequestStatus* status = &aStatus; sl@0: User::RequestComplete(status, aStatus.Int()); sl@0: if (aStatus == iExpectedResult) sl@0: { sl@0: iResult = ETrue; sl@0: } sl@0: else sl@0: { sl@0: iResult = EFalse; sl@0: } sl@0: iFinished = ETrue; sl@0: } sl@0: } sl@0: sl@0: } sl@0: sl@0: void CSleep::PerformCancel() sl@0: { sl@0: if (iState == ESleeping) sl@0: { sl@0: iTimer.Cancel(); sl@0: } sl@0: } sl@0: sl@0: void CSleep::DoCheckResult(TInt aError) sl@0: { sl@0: if (iFinished) sl@0: { sl@0: if (aError == KErrNone) sl@0: { sl@0: iOut.write(_L("Slept well \n\n")); sl@0: } sl@0: else sl@0: { sl@0: iOut.write(_L("Troubled sleep... : %d\n\n"), aError); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void CSleep::DoReportAction() sl@0: { sl@0: iOut.write(_L("Sleeping for %d seconds...\n"), iSeconds); sl@0: }