Update contrib.
2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 /////////////////////////////////////////////////////////////////////////////////
26 /////////////////////////////////////////////////////////////////////////////////
28 _LIT8(KSecondsStart, "<seconds>");
30 CTestAction* CSleep::NewL(CConsoleBase& aConsole,
32 const TTestActionSpec& aTestActionSpec)
34 CTestAction* self = CSleep::NewLC(aConsole, aOut, aTestActionSpec);
35 CleanupStack::Pop(self);
39 CTestAction* CSleep::NewLC(CConsoleBase& aConsole,
41 const TTestActionSpec& aTestActionSpec)
43 CSleep* self = new (ELeave) CSleep(aConsole, aOut);
44 CleanupStack::PushL(self);
45 self->ConstructL(aTestActionSpec);
54 CSleep::CSleep(CConsoleBase& aConsole, Output& aOut) :
55 CTestAction(aConsole, aOut)
60 void CSleep::ConstructL(const TTestActionSpec& aTestActionSpec)
62 CTestAction::ConstructL(aTestActionSpec);
64 iExpectedResult = KErrNone;
65 TLex8 lex(Input::ParseElement(aTestActionSpec.iActionBody, KSecondsStart));
67 User::LeaveIfError(iTimer.CreateLocal());
70 void CSleep::PerformAction(TRequestStatus& aStatus)
77 iTimer.After(aStatus, iSeconds*1000*1000);
82 TRequestStatus* status = &aStatus;
83 User::RequestComplete(status, aStatus.Int());
84 if (aStatus == iExpectedResult)
98 void CSleep::PerformCancel()
100 if (iState == ESleeping)
106 void CSleep::DoCheckResult(TInt aError)
110 if (aError == KErrNone)
112 iOut.write(_L("Slept well \n\n"));
116 iOut.write(_L("Troubled sleep... : %d\n\n"), aError);
121 void CSleep::DoReportAction()
123 iOut.write(_L("Sleeping for %d seconds...\n"), iSeconds);