sysstatemgmt/systemstatereferenceplugins/clayer/inc/ssmsecurityeventobserver.h
changeset 0 4e1aa6a622a0
child 5 1a73e8f1b64d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysstatemgmt/systemstatereferenceplugins/clayer/inc/ssmsecurityeventobserver.h	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,165 @@
+/*
+* Copyright (c) 2008-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:
+* Name        : strtsecurityeventobserver.h
+* Part of     : System Startup / StrtSecObs
+* Declaration of CStrtSecurityEventObserver class
+* Version     : %version: 1 % << Don't touch! Updated by Synergy at check-out.
+* This material, including documentation and any related computer
+* programs, is protected by copyright controlled by Nokia.  All
+* rights are reserved.  Copying, including reproducing, storing,
+* adapting or translating, any or all of this material requires the
+* prior written consent of Nokia.  This material also contains
+* confidential information which may not be disclosed to others
+* without the prior written consent of Nokia.
+* Template version: 4.2
+* Nokia Core OS *
+* File renamed from strtsecurityeventobserver.h to ssmsecurityeventobserver.h as part of Core OS transfer.
+*
+*/
+
+
+
+#ifndef __SSMSECURITYEVENTOBSERVER_H__
+#define __SSMSECURITYEVENTOBSERVER_H__
+
+#include <e32base.h>
+#include <etelmm.h>
+#include <ssm/ssmutility.h>
+#include "strtsecuritynotetype.h"
+
+/* 
+* @publishedPartner
+* @released
+*/
+
+class CStrtSecurityNoteController;
+class CStrtSecPhaseObserver;
+
+NONSHARABLE_CLASS( CStrtSecurityEventObserver ) : public CActive, public MSsmUtility
+    {
+public:
+	//From MSsmUtility
+	void InitializeL();
+	void StartL();
+	void Release();
+    
+public:
+    /**
+     * Two-phased constructor.
+     */
+    IMPORT_C static MSsmUtility* NewL();
+
+protected:
+// from base class CActive
+
+    /**
+     * Implements cancellation of an outstanding request.
+     */
+    void DoCancel();
+
+    /**
+     * Handles an active object’s request completion event.
+     * This RunL will never leave, so RunError not needed.
+     */
+    void RunL();
+
+private:
+    /**
+    * Destructor.
+    */
+    ~CStrtSecurityEventObserver();
+    
+    /**
+     * C++ default constructor.
+     */
+    CStrtSecurityEventObserver();
+
+    /**
+     * Second phase constructor.
+     */
+    void ConstructL();
+
+    /**
+     * Send notify security event to the ETel and set active.
+     * Should not be called if already active.
+     */
+    void Activate();
+
+    /**
+     * Processes commands from the ETel.   
+     */
+    void ProcessSecurityEvent();
+
+    /**
+     * Sends SIM code request to the controller.
+     *
+     * @param aNoteType Identifies the security note to show.
+     */
+    void SimCodeRequest( const TStrtSecurityNoteType aNoteType );
+
+    /**
+     * Sends security code request to the controller.
+     *
+     * @param aNoteType Identifies the security note to show.
+     */
+    void SecCodeRequest( const TStrtSecurityNoteType aNoteType );
+
+    /**
+     * Sends other type (i.e. application PIN) 
+     * code request to the controller.
+     *
+     * @param aNoteType Identifies the security note to show.
+     */
+    void OtherCodeRequest( const TStrtSecurityNoteType aNoteType );
+
+    /**
+     * Sends code verified command to the controller.
+     *
+     * @param aNoteType Identifies the security note which was shown.
+     */
+    void CodeVerifyIndication( const TStrtSecurityNoteType aNoteType );
+
+private: // data
+    /**
+     * Observes the startup security phase.
+     */
+    CStrtSecPhaseObserver* iSecPhaseObserver;
+
+    /**
+     * Controls showing security notifications.
+     */    
+    CStrtSecurityNoteController* iController;
+
+    /**
+     * TelServer client
+     */
+    RTelServer iTelServer;
+    
+    /**
+     * Mobile phone network client
+     */
+    RMobilePhone iPhone;
+        
+    /**
+     * Notify Security Event received from TSY.
+     */
+    RMobilePhone::TMobilePhoneSecurityEvent iEvent;
+    HBufC* iTsyModuleName;
+
+#ifdef TEST_CLAYER_MACRO
+	friend class CLayerTestSsmEventObserver;
+#endif //TEST_CLAYER_MACRO
+    };
+#endif // __SSMSECURITYEVENTOBSERVER_H__