creator/src/creator_connectionmethodelement.cpp
branchRCL_3
changeset 60 6646c35e558c
parent 50 9b2cffad4b5e
--- a/creator/src/creator_connectionmethodelement.cpp	Wed Sep 15 12:13:45 2010 +0300
+++ b/creator/src/creator_connectionmethodelement.cpp	Wed Oct 13 14:32:52 2010 +0300
@@ -60,423 +60,6 @@
     }
 
 #if(!defined __SERIES60_30__ && !defined __SERIES60_31__)
-void CCreatorConnectionMethodElement::AsyncExecuteCommandL()
-    {
-    const CCreatorScriptAttribute* amountAttr = FindAttributeByName(KAmount);
-    TInt cmAmount = 1;    
-    if( amountAttr )
-        {
-        cmAmount = ConvertStrToIntL(amountAttr->Value());
-        }
-    // Get 'fields' element 
-    CCreatorScriptElement* fieldsElement = FindSubElement(KFields);
-    if( fieldsElement && fieldsElement->SubElements().Count() > 0 )
-        {
-        // Get sub-elements
-        const RPointerArray<CCreatorScriptElement>& fields = fieldsElement->SubElements();        
-        // Create connection method entries, the amount of entries is defined by cmAmount:
-        if( iLoopIndex < cmAmount )
-            {            
-            CConnectionSettingsParameters* param = new (ELeave) CConnectionSettingsParameters;
-            CleanupStack::PushL(param);
-            
-            for( TInt i = 0; i < fields.Count(); ++i )
-                {
-                CCreatorScriptElement* field = fields[i];
-                TPtrC elemName = field->Name();
-                TPtrC elemContent = field->Content();
-                const CCreatorScriptAttribute* randomAttr = fields[i]->FindAttributeByName(KRandomLength);
-                TBool useRandom = EFalse;
-                if( randomAttr || elemContent.Length() == 0 )
-                    {
-                    useRandom = ETrue;
-                    }
-                
-                if( elemName == Kconnectionname )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomCMNameL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iConnectionName, elemContent);
-                        // reserve extra space for possible renaming
-                        TInt newLen = param->iConnectionName->Length() + KExtraSpace;
-                        param->iConnectionName = param->iConnectionName->ReAllocL(newLen);
-                        }
-                    }
-                else if( elemName == Kstartpage )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomStartPageL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iStartPage, elemContent);
-                        }
-                    }
-                else if( elemName == Kwapwspoption )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomWapWspOptionL(*iEngine);
-                        }
-                    else
-                        {
-                        if( CompareIgnoreCase(elemContent, Kconnectionless) == 0 )
-                            {
-                            param->iWapWspOption = ECmWapWspOptionConnectionless;
-                            }
-                        else if( CompareIgnoreCase(elemContent, Kconnectionoriented) == 0 )
-                            {
-                            param->iWapWspOption = ECmWapWspOptionConnectionOriented;
-                            }
-                        }
-                    }
-                else if( elemName == Kprotocoltype )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomProtocolTypeL(*iEngine);
-                        }
-                    else
-                        {
-                        if( CompareIgnoreCase(elemContent, Kipv4) == 0 )
-                            {
-                            param->iProtocolType = RPacketContext::EPdpTypeIPv4;
-                            }
-                        else if( CompareIgnoreCase(elemContent, Kipv6) == 0 )
-                            {
-                            param->iProtocolType = RPacketContext::EPdpTypeIPv6;
-                            }
-                        }
-                    }
-                else if( elemName == Kloginname )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomLoginNameL(*iEngine);                       
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iLoginName, elemContent);
-                        }
-                    }
-                else if( elemName == Ksecureauthentication )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomSecureAuthenticationL(*iEngine);
-                        }
-                    else
-                        {
-                        param->iSecureAuthentication = ConvertStrToBooleanL(elemContent);
-                        }
-                    }
-                else if( elemName == Kloginpass )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomLoginPassL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iLoginPass, elemContent);
-                        }
-                    }
-                else if( elemName == Kpromptpassword )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomPromptPasswordL(*iEngine);
-                        }
-                    else
-                        {
-                        param->iPromptPassword = ConvertStrToBooleanL(elemContent);
-                        }
-                    }
-                else if( elemName == Kgatewayaddress )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomGatewayAddressL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iGatewayAddress, elemContent);
-                        }
-                    }
-                else if( elemName == Ksubnetmask )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomSubnetMaskL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iSubnetMask, elemContent);
-                        }
-                    }
-                else if( elemName == Kdeviceipaddr )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomIPAddressL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iIPAddr, elemContent);
-                        }
-                    }
-                else if( elemName == Kip4nameserver1 )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomIP4NameServer1L(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iIP4NameServer1, elemContent);
-                        }
-                    }
-                else if( elemName == Kip4nameserver2 )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomIP4NameServer2L(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iIP4NameServer2, elemContent);
-                        }
-                    }
-                else if( elemName == Kdatacalltelnumber )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomTelephoneNumberL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iDefaultTelNumber, elemContent);
-                        }
-                    }
-                else if( elemName == Kdatacalltypeisdn )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomBearerTypeIsdnL(*iEngine);
-                        }
-                    else
-                        {
-                        if( CompareIgnoreCase(elemContent, Kanalogue) == 0 )
-                            param->iBearerCallTypeIsdn = CMManager::ECmCallTypeAnalogue;
-                        else if( CompareIgnoreCase( elemContent, Kisdnv110) == 0 )
-                            param->iBearerCallTypeIsdn = CMManager::ECmCallTypeISDNv110;
-                        else if( CompareIgnoreCase( elemContent, Kisdnv120) == 0 )
-                            param->iBearerCallTypeIsdn = CMManager::ECmCallTypeISDNv120;
-                        }
-                    }
-                else if( elemName == Kbearertype )
-                    {
-                    if( useRandom )
-                        {
-                        param->iBearerType = KRandomBearerType;
-                        }
-                    else
-                        {
-                        if( CompareIgnoreCase(elemContent, Kwlan) == 0 )
-                            {
-                            param->iBearerType = KUidWlanBearerType;
-                            }
-                        else if( CompareIgnoreCase(elemContent, Kgprs) == 0 )
-                            {
-                            param->iBearerType = KUidPacketDataBearerType;
-                            }
-                        else if( CompareIgnoreCase(elemContent, Kdatacall) == 0 )
-                            {
-                            param->iBearerType = KUidCSDBearerType;
-                            }
-                        else if( CompareIgnoreCase(elemContent, Khsgsm) == 0 )
-                            {
-                            param->iBearerType = KUidHSCSDBearerType;
-                            }
-                        else if( CompareIgnoreCase(elemContent, Kembedded) == 0 )
-                            {
-                            param->iBearerType = KUidEmbeddedDestination;
-                            }
-                        else if( CompareIgnoreCase(elemContent, Kvpn) == 0 )
-                            {
-                            param->iBearerType = KPluginVPNBearerTypeUid;
-                            }
-                        else if( CompareIgnoreCase(elemContent, Klan) == 0 )
-                            {
-                            param->iBearerType = KUidLanBearerType;
-                            }
-                        }
-                    }
-                else if( elemName == Kdatacalllinespeed )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomBearerSpeedL(*iEngine);
-                        }
-                    else
-                        {
-                        if( CompareIgnoreCase(elemContent, Kautomatic) == 0 )
-                            {                            
-                            param->iBearerSpeed = CMManager::ECmSpeedAutobaud;
-                            }
-                        else
-                            {
-                            TUint lineSpeed = ConvertStrToUintL(elemContent);
-                            if( lineSpeed == 9600 )
-                                param->iBearerSpeed = CMManager::ECmSpeed9600;
-                            else if( lineSpeed == 14400 )
-                                param->iBearerSpeed = CMManager::ECmSpeed14400;
-                            else if( lineSpeed == 19200 )
-                                param->iBearerSpeed = CMManager::ECmSpeed19200;
-                            else if( lineSpeed == 28800 )
-                                param->iBearerSpeed = CMManager::ECmSpeed28800;
-                            else if( lineSpeed == 38400 )
-                                param->iBearerSpeed = CMManager::ECmSpeed38400;
-                            else if( lineSpeed == 43200 )
-                                param->iBearerSpeed = CMManager::ECmSpeed43200;
-                            else if( lineSpeed == 56000 )
-                                param->iBearerSpeed = CMManager::ECmSpeed56000;
-                            }                           
-                        }
-                    }
-                else if( elemName == Kuseproxy )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomUseProxyL(*iEngine);
-                        }
-                    else
-                        {
-                        param->iUseProxy = ConvertStrToBooleanL(elemContent);
-                        }
-                    }
-                else if( elemName == Kproxyserveraddress )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomProxyAddressL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iProxyServerAddress, elemContent);                        
-                        }
-                    }
-                else if( elemName == Kproxyportnumber )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomProxyPortL(*iEngine);
-                        }
-                    else
-                        {
-                        param->iProxyPortNumber = ConvertStrToUintL(elemContent);                       
-                        }
-                    }
-                else if( elemName == Kip6nameserver1 )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomIPv6NameServer1L(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iIP6NameServer1, elemContent);                                            
-                        }
-                    }
-                else if( elemName == Kip6nameserver2 )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomIPv6NameServer2L(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iIP6NameServer2, elemContent);                                            
-                        }
-                    }
-                else if( elemName == Kdisabletextauth )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomDisableTextAuthL(*iEngine);
-                        }
-                    else
-                        {
-                        param->iDisableTextAuth = ConvertStrToBooleanL(elemContent);
-                        }
-                    }
-                else if( elemName == Kwlanname )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomWLANNameL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iWLANName, elemContent);                                              
-                        }
-                    }
-                else if( elemName == Kwlanipaddr )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomWlanIpAddrL(*iEngine);
-                        }
-                    else
-                        {
-                        SetContentToTextParamL(param->iWlanIpAddr, elemContent);                                            
-                        }
-                    }
-                else if( elemName == Kwlansecmode )
-                    {
-                    if( useRandom )
-                        {
-                        param->SetRandomWLANSecurityModeL(*iEngine);
-                        }
-                    else
-                        {
-                        if( CompareIgnoreCase(elemContent, Kopen) == 0)
-                            param->iWLanSecMode = CMManager::EWlanSecModeOpen;
-                        else if( CompareIgnoreCase(elemContent, Kwep) == 0 )
-                            param->iWLanSecMode = CMManager::EWlanSecModeWep;
-                        else if( CompareIgnoreCase(elemContent, Ke802_1x) == 0 )
-                            param->iWLanSecMode = CMManager::EWlanSecMode802_1x;
-                        else if( CompareIgnoreCase(elemContent, Kwpa) == 0 )
-                            param->iWLanSecMode = CMManager::EWlanSecModeWpa;
-                        else if( CompareIgnoreCase(elemContent, Kwpa2) == 0 )
-                            param->iWLanSecMode = CMManager::EWlanSecModeWpa2;                                                                  
-                        }
-                    }
-                }
-            iEngine->AppendToCommandArrayL(ECmdCreateMiscEntryAccessPoints, param);
-            CleanupStack::Pop(); // param
-            StartNextLoop();
-            }
-        else
-            {
-            // stop loop and signal end of the executing command
-            AsyncCommandFinished();
-            }
-        }
-    else
-        {
-        // No fields defined so add random entries:
-        iEngine->AppendToCommandArrayL(ECmdCreateMiscEntryAccessPoints, 0, cmAmount);
-        // signal end of the executing command
-        AsyncCommandFinished();
-        }
-    }
-
 void CCreatorConnectionMethodElement::ExecuteCommandL()
     {
     const CCreatorScriptAttribute* amountAttr = FindAttributeByName(KAmount);