eapol/eapol_framework/eapol_symbian/eap_server/include/EapServer.h
branchRCL_3
changeset 45 bad0cc58d154
child 49 43351a4f2da3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eapol/eapol_framework/eapol_symbian/eap_server/include/EapServer.h	Tue Aug 31 15:16:37 2010 +0300
@@ -0,0 +1,98 @@
+/*
+* Copyright (c) 2001-2010 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "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:  EAP-server class.
+*
+*/
+
+/*
+* %version: 12 %
+*/
+
+
+#ifndef EAPAUTHSERVER_H_
+#define EAPAUTHSERVER_H_
+
+#include <e32base.h>
+#include <e32svr.h>
+#include <ecom/implementationinformation.h>
+#include <ecom/ecom.h>
+#include "EapServerClientDef.h"
+#include "EapScheduler.h"
+#include "EapSession.h"
+#include "abs_eap_am_tools.h"
+#include "EapClientIf.h"
+#include "EapServerBackup.h"
+
+class CEapDelayedShutdown;
+
+class CEapServer
+: public CServer2
+, public EapClientIf
+, public AbsEapserverBackup
+    {
+
+public:
+
+    // construct
+    CEapServer();
+    void ConstructL();
+    static CEapServer* NewL();
+    virtual ~CEapServer();
+    // from CServer2
+    CSession2* NewSessionL(const TVersion& aVersion, const RMessage2 &aMessage ) const;
+    // session counting
+    void IncrementSessions();
+    void DecrementSessions();
+    // utility
+    void PanicClient(TInt aPanic) const;
+
+	void StopL();
+
+	void BackupOrRestoreCompleteL();
+
+	void BackupOrRestoreStartingL();
+
+private:
+
+    TInt RunError(TInt aErr);
+    CEapDelayedShutdown* iShutdown;
+	CEapserverBackup * iBackupRestore;
+
+    TInt iSessionCount;
+    abs_eap_am_tools_c * iTools;
+    TBool iIsValid;
+    };
+
+
+// Handles timer that stops EAP-server after some idle time.
+class CEapDelayedShutdown : public CActive
+    {
+public:
+    CEapDelayedShutdown(abs_eap_am_tools_c * const tools, CEapServer * const aServer);
+    void ConstructL();
+    virtual ~CEapDelayedShutdown();
+    void Start();
+private:
+    void DoCancel();
+    void RunL();
+	TInt RunError(TInt aError);
+
+private:
+	abs_eap_am_tools_c * const iTools;
+    RTimer iTimer;
+	CEapServer * const iServer;
+    };
+
+
+#endif /* EAPAUTHSERVER_H_ */