apengine/apsettingshandlerui/src/ApSettingsModel.cpp
changeset 23 7ec726f93df1
parent 0 5a93021fdf25
child 41 bbb64eb3bdee
--- a/apengine/apsettingshandlerui/src/ApSettingsModel.cpp	Mon May 03 12:53:07 2010 +0300
+++ b/apengine/apsettingshandlerui/src/ApSettingsModel.cpp	Fri May 14 16:15:46 2010 +0300
@@ -44,9 +44,6 @@
 #include "ApNetworks.h"
 #include "FeatureManagerWrapper.h"
 
-#include <WEPSecuritySettingsUI.h>
-#include <WPASecuritySettingsUI.h>
-
 #include <ApAccessPointItem.h>
 
 #include "ApSettingsHandlerLogger.h"
@@ -145,11 +142,6 @@
         delete iop;
         }
 
-    delete iWepSecSettings;
-    delete iWepSecSettingsUi;
-
-    delete iWpaSecSettings;
-    delete iWpaSecSettingsUi;
     APSETUILOGGER_LEAVEFN( EModel,"~Model")    
     }
 
@@ -1088,35 +1080,9 @@
 //
 TInt CApSettingsModel::ChangeWepSettingsL( CApAccessPointItem* aApItem )
     {
-    APSETUILOGGER_ENTERFN( EModel,"Model::ChangeWepSettingsL")
-    TInt retval(0);
-        
-    if ( !iWepSecSettings )
-        {
-        iWepSecSettings = CWEPSecuritySettings::NewL();
-        TUint32 iapid( 0 );
-        aApItem->ReadUint( EApIapServiceId, iapid );
-        iWepSecSettings->LoadL( iapid, *Database()->Database() );        
-        }
-
-    if ( !iWepSecSettingsUi )
-        {
-        iWepSecSettingsUi = CWEPSecuritySettingsUi::NewL( *EikEnv() );
-        }
-
-    iWepUiExitReason = iWepSecSettings->EditL( *iWepSecSettingsUi, 
-                                               aApItem->ConnectionName() );
-                                               
-    if ( iWepUiExitReason & CWEPSecuritySettings::EExitReq )
-        {
-        retval += KApUiEventExitRequested;
-        }
-    if ( iWepUiExitReason & CWEPSecuritySettings::EShutDownReq )
-        {
-        retval += KApUiEventShutDownRequested;
-        }
-    APSETUILOGGER_LEAVEFN( EModel,"Model::ChangeWepSettingsL")
-    return retval;
+    APSETUILOGGER_ENTERFN( EModel,"Model::ChangeWepSettingsL - ERROR: not suported")
+    aApItem = aApItem;
+    return KErrNotSupported;
     }
 
 
@@ -1127,35 +1093,9 @@
 //
 TInt CApSettingsModel::ChangeWpaSettingsL( CApAccessPointItem* aApItem )
     {
-    APSETUILOGGER_ENTERFN( EModel,"Model::ChangeWpaSettingsL")
-    TInt retval(0);
-
-    if ( !iWpaSecSettings )
-        {
-        iWpaSecSettings = CWPASecuritySettings::NewL( ESecurityModeWpa );
-        TUint32 iapid( 0 );
-        aApItem->ReadUint( EApIapServiceId, iapid );
-        iWpaSecSettings->LoadL( iapid, *Database()->Database() );
-        }
-
-    if ( !iWpaSecSettingsUi )
-        {
-        iWpaSecSettingsUi = CWPASecuritySettingsUi::NewL( *EikEnv() );
-        }
-
-    iWpaUiExitReason = iWpaSecSettings->EditL( *iWpaSecSettingsUi, 
-                                               aApItem->ConnectionName() );
-                                               
-    if ( iWpaUiExitReason & CWPASecuritySettings::EExitReq )
-        {
-        retval += KApUiEventExitRequested;
-        }
-    if ( iWpaUiExitReason & CWPASecuritySettings::EShutDownReq )
-        {
-        retval += KApUiEventShutDownRequested;
-        }
-    APSETUILOGGER_LEAVEFN( EModel,"Model::ChangeWpaSettingsL")    
-    return retval;
+    APSETUILOGGER_ENTERFN( EModel,"Model::ChangeWpaSettingsL - ERROR: not suported")
+    aApItem = aApItem;
+    return KErrNotSupported;
     }
 
 
@@ -1166,35 +1106,9 @@
 //
 TInt CApSettingsModel::Change8021xSettingsL( CApAccessPointItem* aApItem )
     {
-    APSETUILOGGER_ENTERFN( EModel,"Model::Change8021xSettingsL")
-    TInt retval(0);
-
-    if ( !iWpaSecSettings )
-        {
-        iWpaSecSettings = CWPASecuritySettings::NewL( ESecurityMode8021x );
-        TUint32 iapid( 0 );
-        aApItem->ReadUint( EApIapServiceId, iapid );
-        iWpaSecSettings->LoadL( iapid, *Database()->Database() );        
-        }
-        
-    if ( !iWpaSecSettingsUi )
-        {
-        iWpaSecSettingsUi = CWPASecuritySettingsUi::NewL( *EikEnv() );
-        }
-        
-    iWpaUiExitReason = iWpaSecSettings->EditL( *iWpaSecSettingsUi, 
-                                               aApItem->ConnectionName() );
-
-    if ( iWpaUiExitReason & CWPASecuritySettings::EExitReq )
-        {
-        retval += KApUiEventExitRequested;
-        }
-    if ( iWpaUiExitReason & CWPASecuritySettings::EShutDownReq )
-        {
-        retval += KApUiEventShutDownRequested;
-        }
-    APSETUILOGGER_LEAVEFN( EModel,"Model::Change8021xSettingsL")       
-    return retval;
+    APSETUILOGGER_ENTERFN( EModel,"Model::Change8021xSettingsL - ERROR: not suported")
+    aApItem = aApItem;
+    return KErrNotSupported;
     }
 
 
@@ -1205,19 +1119,10 @@
 //
 void CApSettingsModel::ClearWEPAndWPASettings()
     {
-    APSETUILOGGER_ENTERFN( EModel,"Model::ClearWEPAndWPASettings")
-    
-    delete iWepSecSettings;
-    iWepSecSettings = NULL;
-
-    delete iWpaSecSettings;
-    iWpaSecSettings = NULL;
-    
-    APSETUILOGGER_LEAVEFN( EModel,"Model::ClearWEPAndWPASettings") 
+    APSETUILOGGER_ENTERFN( EModel,"Model::ClearWEPAndWPASettings - ERROR: not suported")
     }
 
 
-
 // ---------------------------------------------------------
 // CApSettingsModel::WriteWlanL
 // ---------------------------------------------------------
@@ -1225,284 +1130,34 @@
 void CApSettingsModel::WriteWlanL( CApAccessPointItem& aApItem,
                                    TBool aIsNew )
     {
-    APSETUILOGGER_ENTERFN( EModel,"Model::WriteWlanL")
-    // now check if it is WLAN and handle security savings...
-    if ( aApItem.BearerTypeL() == EApBearerTypeWLAN )
-        { // it is WLAN...
-        // check that there were no bearer-change, because if orig. bearer 
-        // was NOT wlan, then we shouls consider it as a new record!!!
-        TUint32 wlanid(0);
-        aApItem.ReadUint( EApIapServiceId, wlanid );        
-        
-        TUint32 oldwlanid(wlanid);
-        
-        TTypeOfSaving savetype( ESavingEditedAP );
-        
-        if ( aIsNew )
-            {
-            savetype = ESavingBrandNewAP;
-            oldwlanid = 0;
-            }
-        // now check if it is WEP...
-        // read up security mode
-        TUint32 secmode( 0 );
-        aApItem.ReadUint( EApWlanSecurityMode, secmode );
-        
-        
-        TBool fresh(EFalse); 
-        
-        
-        switch ( secmode )
-            {
-            case EOpen:
-                {
-                break;
-                }
-            case EWep:
-                {
-                // we have to try to save if:
-                // 1. it is a changed AP, it is possible that only 
-                // sec. settings have been changed. 
-                // In this case, iWepSecSettings might be NULL!!
-                // 2. it's sec. settings had been edited
-                
-                if ( !iWepSecSettings )
-                    {
-                    iWepSecSettings = CWEPSecuritySettings::NewL();
-                    fresh = ETrue;
-                    iWepSecSettings->LoadL( oldwlanid, 
-                                            *Database()->Database() );
-                    }
-                
-                if ( ( iWepUiExitReason & CWEPSecuritySettings::EValid ) 
-                    || ( fresh ) )
-                    { // save WEP settings, too, into same transaction...
-                    iWepSecSettings->SaveL( wlanid, *iDb->Database() );
-                    }
-                break;
-                }
-            case E802_1x:
-                {
-                
-                if ( !iWpaSecSettings )
-                    {
-                    iWpaSecSettings = 
-                        CWPASecuritySettings::NewL( ESecurityMode8021x );
-                    fresh = ETrue;
-                    iWpaSecSettings->LoadL( oldwlanid, 
-                                            *Database()->Database() );
-                    }                
-                
-                if ( ( iWpaUiExitReason & CWPASecuritySettings::EValid )
-                    || ( fresh ) )
-                    { // save WPA settings, too, into same transaction...
-                    iWpaSecSettings->SaveL( wlanid, *iDb->Database(), 
-                                            savetype, oldwlanid );
-                    }
-                break;
-                }
-            case EWpa:
-            case EWpa2:
-                {
-                
-                if ( !iWpaSecSettings )
-                    {
-                    iWpaSecSettings = 
-                          CWPASecuritySettings::NewL( ESecurityModeWpa );
-                    fresh = ETrue;
-                    iWpaSecSettings->LoadL( oldwlanid, 
-                                            *Database()->Database() );
-                    }                
-                
-                if ( ( iWpaUiExitReason & CWPASecuritySettings::EValid )
-                    || ( fresh ) )
-                    { // save WPA settings, too, into same transaction...
-                    iWpaSecSettings->SaveL( wlanid, *iDb->Database(),
-                                            savetype, oldwlanid );
-                    }
-                break;
-                }
-            default:
-                {
-                __ASSERT_DEBUG( EFalse, Panic( EUnknownCase ) );
-                // do nothing in urel
-                break;
-                }
-            }
-        }
-    APSETUILOGGER_LEAVEFN( EModel,"Model::WriteWlanL")    
+    APSETUILOGGER_ENTERFN( EModel,"Model::WriteWlanL - ERROR: not supported")
+    aApItem;
+    aIsNew;
+    User::Leave( KErrNotSupported );
     }
 
 
-
-
-
 // ---------------------------------------------------------
 // CApSettingsModel::LoadWlanL
 // ---------------------------------------------------------
 //
 void CApSettingsModel::LoadWlanL( CApAccessPointItem& aApItem )
     {
-    APSETUILOGGER_ENTERFN( EModel,"Model::LoadWlanL")
-    // now check if it is WLAN and handle security savings...
-    if ( aApItem.BearerTypeL() == EApBearerTypeWLAN )
-        { // it is WLAN...
-        // now check if it is WEP...
-        // read up security mode
-        TUint32 secmode( 0 );
-        aApItem.ReadUint( EApWlanSecurityMode, secmode );
-        switch ( secmode )
-            {
-            case EOpen:
-                {
-                break;
-                }
-            case EWep:
-                {
-                if ( !iWepSecSettings )
-                    {
-                    iWepSecSettings = CWEPSecuritySettings::NewL();
-                    }
-    
-                if ( !iWepSecSettingsUi )
-                    {
-                    iWepSecSettingsUi = 
-                        CWEPSecuritySettingsUi::NewL( *EikEnv() );
-                    }
-                TUint32 wlanid( 0 );
-                aApItem.ReadUint( EApIapServiceId, wlanid );
-                iWepSecSettings->LoadL( wlanid, *Database()->Database() );
-                break;
-                }
-            case E802_1x:
-                {
-                if ( !iWpaSecSettings )
-                    {
-                    iWpaSecSettings = 
-                        CWPASecuritySettings::NewL( ESecurityMode8021x );
-                    }
-    
-                if ( !iWpaSecSettingsUi )
-                    {
-                    iWpaSecSettingsUi = 
-                        CWPASecuritySettingsUi::NewL( *EikEnv() );
-                    }
-                TUint32 wlanid( 0 );
-                aApItem.ReadUint( EApIapServiceId, wlanid );
-                iWpaSecSettings->LoadL( wlanid, *Database()->Database() );
-                break;
-                }
-            case EWpa:
-            case EWpa2:
-                {
-                if ( !iWpaSecSettings )
-                    {
-                    iWpaSecSettings = 
-                        CWPASecuritySettings::NewL( ESecurityModeWpa );
-                    }
-    
-                if ( !iWpaSecSettingsUi )
-                    {
-                    iWpaSecSettingsUi = 
-                        CWPASecuritySettingsUi::NewL( *EikEnv() );
-                    }
-                TUint32 wlanid( 0 );
-                aApItem.ReadUint( EApIapServiceId, wlanid );
-                iWpaSecSettings->LoadL( wlanid, *Database()->Database() );
-                break;
-                }
-            default:
-                {
-                __ASSERT_DEBUG( EFalse, Panic( EUnknownCase ) );
-                // do nothing in urel
-                break;
-                }
-            }
-        }
-    APSETUILOGGER_LEAVEFN( EModel,"Model::LoadWlanL")    
+    APSETUILOGGER_ENTERFN( EModel,"Model::LoadWlanL - ERROR: not supported")
+    aApItem;
+    User::Leave( KErrNotSupported );
     }
 
 
-
-
-
 //----------------------------------------------------------
 // CApSettingsModel::HasWlanSecSettingsFilledL
 //----------------------------------------------------------
 //
 TBool CApSettingsModel::HasWlanSecSettingsFilledL( CApAccessPointItem& aApItem )
     {
-    APSETUILOGGER_ENTERFN( EModel,"Model::HasWlanSecSettingsFilledL")
-    TBool retval(EFalse);
-    
-    TUint32 secmode( 0 );
-    aApItem.ReadUint( EApWlanSecurityMode, secmode );
-    
-    TUint32 wlanid(0);
-    aApItem.ReadUint( EApIapServiceId, wlanid );        
-        
-    TUint32 oldwlanid(wlanid);
-
-    TUint32 wapuid = aApItem.WapUid();
-
-    if ( ( wapuid == KApNoneUID )
-        || ( iUtils->BearerTypeL( wapuid ) != EApBearerTypeWLAN ) )
-        {
-        oldwlanid = 0;
-        }
-
-    switch ( secmode )
-        {
-        case EOpen:
-            {
-            retval = ETrue;
-            break;
-            }
-        case EWep:
-            {
-            if ( !iWepSecSettings )
-                {
-                iWepSecSettings = CWEPSecuritySettings::NewL();
-                iWepSecSettings->LoadL( oldwlanid, 
-                                        *Database()->Database() );
-                }
-            retval = iWepSecSettings->IsValid();
-            break;
-            }
-        case E802_1x:
-            {
-            if ( !iWpaSecSettings )
-                {
-                iWpaSecSettings = 
-                    CWPASecuritySettings::NewL( ESecurityMode8021x );
-                iWpaSecSettings->LoadL( oldwlanid, 
-                                        *Database()->Database() );
-                }
-            retval = iWpaSecSettings->IsValid();
-            break;
-            }
-        case EWpa:
-        case EWpa2:
-            {
-            if ( !iWpaSecSettings )
-                {
-                iWpaSecSettings = 
-                      CWPASecuritySettings::NewL( ESecurityModeWpa );
-                iWpaSecSettings->LoadL( oldwlanid, 
-                                        *Database()->Database() );
-                }                
-            retval = iWpaSecSettings->IsValid();                
-            break;
-            }
-        default:
-            {
-            __ASSERT_DEBUG( EFalse, Panic( EUnknownCase ) );
-            // do nothing in urel
-            break;
-            }
-        }
-    APSETUILOGGER_LEAVEFN( EModel,"Model::HasWlanSecSettingsFilledL")    
-    return retval;
+    APSETUILOGGER_ENTERFN( EModel,"Model::HasWlanSecSettingsFilledL - ERROR: not supported")
+    aApItem;
+    return EFalse;
     }
 
 
@@ -1512,66 +1167,9 @@
 //
 void CApSettingsModel::UpdateSecurityModeL( CApAccessPointItem& aApItem )
     {
-    APSETUILOGGER_ENTERFN( EModel,"Model::UpdateSecurityModeL")
-    TUint32 secmode( 0 );
-    aApItem.ReadUint( EApWlanSecurityMode, secmode );
-
-    TUint32 wlanid(0);
-    aApItem.ReadUint( EApIapServiceId, wlanid );
-
-    switch ( secmode )
-        {
-        case EOpen:
-            {
-            break;
-            }
-        case EWep:
-            {
-            if ( iWepSecSettings )
-                {
-                delete iWepSecSettings;
-                iWepSecSettings = NULL; // to satisfy CodeScanner
-                }
-            iWepSecSettings = CWEPSecuritySettings::NewL();
-            iWepSecSettings->LoadL( wlanid, 
-                                    *Database()->Database() );
-            break;
-            }
-        case E802_1x:
-            {
-            if ( iWpaSecSettings )
-                {
-                delete iWpaSecSettings;
-                iWpaSecSettings = NULL; // to satisfy CodeScanner
-                }
-            iWpaSecSettings = 
-                CWPASecuritySettings::NewL( ESecurityMode8021x );
-            iWpaSecSettings->LoadL( wlanid, 
-                                    *Database()->Database() );
-            break;
-            }
-        case EWpa:
-        case EWpa2:
-            {
-            if ( iWpaSecSettings )
-                {
-                delete iWpaSecSettings;
-                iWpaSecSettings = NULL; // to satisfy CodeScanner
-                }
-            iWpaSecSettings = 
-                  CWPASecuritySettings::NewL( ESecurityModeWpa );
-            iWpaSecSettings->LoadL( wlanid, 
-                                    *Database()->Database() );
-            break;
-            }
-        default:
-            {
-            __ASSERT_DEBUG( EFalse, Panic( EUnknownCase ) );
-            // do nothing in urel
-            break;
-            }
-        }
-    APSETUILOGGER_LEAVEFN( EModel,"Model::UpdateSecurityModeL")    
+    APSETUILOGGER_ENTERFN( EModel,"Model::UpdateSecurityModeL - ERROR: not supported")
+    aApItem;
+    User::Leave( KErrNotSupported );
     }
 
 // End of File