diff -r 000000000000 -r 4e1aa6a622a0 sysstatemgmt/systemstatemgr/ss/inc/rvobserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sysstatemgmt/systemstatemgr/ss/inc/rvobserver.h Tue Feb 02 00:53:00 2010 +0200 @@ -0,0 +1,82 @@ +// Copyright (c) 2007-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: +// + +#ifndef __RVOBSERVER_H__ +#define __RVOBSERVER_H__ + +#include +#include +#include + +#include "timeoutwaiternotification.h" +#include "rvobservernotification.h" + +/** +@internalTechnology +@released +*/ +enum TRvObserverState + { + ERvObserverStateNotInvoked = 0, + ERvObserverStateAwaitingRv + }; + + + +class CTimeoutWaiter; +class CSsmStartupProperties; + +NONSHARABLE_CLASS( CRvObserver ) : public CActive, public MTimeoutWaiterNotification + { +public: + static CRvObserver* NewL( RProcess& aProcess, MRvObserverNotification& aObserved, CApaStarter* aApaStarter ); + static CRvObserver* NewLC( RProcess& aProcess, MRvObserverNotification& aObserved, CApaStarter* aApaStarter ); + ~CRvObserver(); + + void RvAndObserveL( CSsmStartupProperties* aStartupProperties ); + // From MTimeoutWaiterNotification + void NotifyTimeout(); + +protected: + void RunL(); + void DoCancel(); + TInt RunError( TInt aError ); + +private: + CRvObserver( RProcess& aProcess, MRvObserverNotification& aObserved, CApaStarter* aApaStarter ); + void ConstructL(); + + void InvokeL(); + TInt GetProcessHandle( RProcess& aProcess, const TThreadId& aThreadId ); + void NotifyOrRetryL(); + TBool GoodStart(); + +private: + CTimeoutWaiter* iTimeoutWaiter; + CApaStarter* iApaStarter; // not owning + CSsmStartupProperties* iStartupProperties; // Not owning. + MRvObserverNotification& iStarter; + TInt iHandleNumber; + TThreadId iThreadId; + RProcess& iProcess; + TRvObserverState iObserverState; + TInt iRetries; + TBool iTimeOut; + }; + + + +#endif // __RVOBSERVER_H__ +