sysstatemgmt/systemstatemgr/test/tss/inc/asstopper.h
changeset 0 4e1aa6a622a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysstatemgmt/systemstatemgr/test/tss/inc/asstopper.h	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,95 @@
+// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of "Eclipse Public License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+//
+
+/**
+ @file
+ @test
+ @internalComponent - Internal Symbian test code
+*/
+
+#ifndef __ASSTOPPER_H__
+#define __ASSTOPPER_H__
+
+#include <e32base.h>
+#include <ssm/ssmstartsafe.h>
+
+
+const TInt KAsStopperDelay = 2000000; //us
+const TInt KSsAsStopperNominalTimeout = 2000000;
+
+class MSsTestAsyncNotifier;
+class CAsStopper : public CActive
+	{
+public:
+	CAsStopper( TInt aTimeout );
+	CAsStopper( TInt aTimeout, MSsTestAsyncNotifier* aNotify );
+	~CAsStopper();
+	
+	TRequestStatus& Trs();
+	TInt CompletionCode();
+	
+protected:
+	void RunL();
+	void DoCancel();
+	
+private:
+	RTimer iTimer;
+	TInt iTimeout; // us
+	TBool iRunning;
+	TInt iCompletionCode; // The first completion code
+	MSsTestAsyncNotifier* iNotify; // Not owning
+	};
+
+
+	
+class CAsPauseStopper : public CActive
+	{
+public:
+CAsPauseStopper( TInt aTimeout );
+	~CAsPauseStopper();
+	
+protected:
+	void RunL();
+	void DoCancel();
+	
+private:
+	RTimer iTimer;
+	TInt iTimeout; // us
+	TBool iRunning;
+	};	
+	
+	
+
+class CSsPauseDeleter : public CActive
+	{
+public:
+CSsPauseDeleter( TInt aTimeout, CSsmStartSafe* aSsmStartSafe );
+	~CSsPauseDeleter();
+	
+protected:
+	void RunL();
+	void DoCancel();
+	
+private:
+	RTimer iTimer;
+	TInt iTimeout; // us
+	CSsmStartSafe* iSsmStartSafe; // Not owning
+	};	
+	
+	
+#endif //__ASSTOPPER_H__
+
+
+