gssettingsuis/Gs/GSPDataHSDPAPlugin/src/GSPDataHSDPAModel.cpp
branchRCL_3
changeset 54 7e0eff37aedb
parent 0 8c5d936e5675
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gssettingsuis/Gs/GSPDataHSDPAPlugin/src/GSPDataHSDPAModel.cpp	Wed Sep 01 12:20:44 2010 +0100
@@ -0,0 +1,142 @@
+/*
+* Copyright (c) 2007 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:  Model for GSPDataHSDPAPlugin.
+*
+*/
+
+
+// INCLUDE FILES
+#include    "GSPDataHSDPAModel.h"
+#include    "GsLogger.h"
+
+#include    <featmgr.h>
+#include    <commdb.h>
+#include    <settingsinternalcrkeys.h>
+
+
+// CONSTANTS
+
+// ================= MEMBER FUNCTIONS =======================
+
+
+// ----------------------------------------------------------------------------
+// CGSPDataHSDPAModel::NewL
+//
+// EPOC two-phased constructor
+// ----------------------------------------------------------------------------
+//
+CGSPDataHSDPAModel* CGSPDataHSDPAModel::NewL()
+    {
+    CGSPDataHSDPAModel* self = new( ELeave ) CGSPDataHSDPAModel;
+    CleanupStack::PushL( self );
+    self->ConstructL();
+    CleanupStack::Pop( self );
+    return self;
+    }
+
+
+// ----------------------------------------------------------------------------
+// CGSPDataHSDPAModel::CGSPDataHSDPAModel
+//
+// C++ default constructor can NOT contain any code, that
+// might leave.
+// ----------------------------------------------------------------------------
+//
+CGSPDataHSDPAModel::CGSPDataHSDPAModel()
+    {
+    __GSLOGSTRING( "[CGSPDataHSDPAModel] CGSPDataHSDPAModel()" );
+    }
+
+
+// ----------------------------------------------------------------------------
+// CGSPDataHSDPAModel::ConstructL
+//
+// EPOC default constructor can leave.
+// ----------------------------------------------------------------------------
+//
+void CGSPDataHSDPAModel::ConstructL()
+    {
+    if( FeatureManager::FeatureSupported( KFeatureIdLoggerGprs ) )
+        {
+        User::LeaveIfError( iTelServer.Connect() );
+        User::LeaveIfError( iMobilePhone.Open( iTelServer, KMmTsyPhoneName ) );
+        User::LeaveIfError( iCustomAPI.Open( iMobilePhone ) );
+        }
+    }
+
+
+// ----------------------------------------------------------------------------
+// CGSPDataHSDPAModel::~CGSPDataHSDPAModel
+//
+// Destructor
+// ----------------------------------------------------------------------------
+//
+CGSPDataHSDPAModel::~CGSPDataHSDPAModel()
+    {
+    if( FeatureManager::FeatureSupported( KFeatureIdLoggerGprs ) )
+        {
+        iCustomAPI.Close();
+        iMobilePhone.Close();
+        iTelServer.Close();
+        }
+    __GSLOGSTRING( "[CGSPDataConnectionModel] Handles closed." );
+    }
+
+// ----------------------------------------------------------------------------
+// CGSPDataModel::CurrentHSDPAItemL
+//
+// Returns 0( Disabled ) /1 (Enabled) .
+// ----------------------------------------------------------------------------
+//
+TInt CGSPDataHSDPAModel::CurrentHSDPAItemL()
+    {
+    TInt hsdpaValue = EFalse;
+    TRequestStatus status;
+    RMmCustomAPI::THSxPAStatus hSxPAStatus;
+    iCustomAPI.ReadHSxPAStatus( status,hSxPAStatus );
+    User::WaitForRequest( status );
+    if ( hSxPAStatus == RMmCustomAPI::EHSxPADisabled )
+        {
+        hsdpaValue = EFalse; // HSDPA Disable
+        }
+    else if ( hSxPAStatus == RMmCustomAPI::EHSxPAEnabled )
+        {
+        hsdpaValue = ETrue; //HSDPA Enable
+        }
+    return hsdpaValue;
+    }
+
+// ----------------------------------------------------------------------------
+// CGSPDataModel::CurrentHSDPAItemL
+//
+// Set 0( Disabled ) /1 (Enabled) .
+// ----------------------------------------------------------------------------
+//    
+void CGSPDataHSDPAModel::SetHSDPAItemValueL( TInt aHsdpaValue )
+    {
+    TRequestStatus status;
+    RMmCustomAPI::THSxPAStatus hSxPAStatus;
+    if ( aHsdpaValue == 0 )
+        {
+    	hSxPAStatus = RMmCustomAPI::EHSxPADisabled;
+    	}
+    else
+        {
+        hSxPAStatus = RMmCustomAPI::EHSxPAEnabled;
+        }
+    iCustomAPI.WriteHSxPAStatus( status,hSxPAStatus );
+    User::WaitForRequest( status );
+    }
+
+//  End of File