remotemgmt_plat/syncml_ds_customization_api/tsrc/synchconfigvalidator/customdatasynchdeviceinfo.cpp
branchRCL_3
changeset 26 19bba8228ff0
parent 25 b183ec05bd8c
child 27 5cc2995847ea
--- a/remotemgmt_plat/syncml_ds_customization_api/tsrc/synchconfigvalidator/customdatasynchdeviceinfo.cpp	Tue Aug 31 16:04:06 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,143 +0,0 @@
-/*
-* Copyright (c) 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: 
-*
-*/
-
-#include "customdatasynchdeviceinfo.h"
-
-#include <Etel3rdParty.h>
- 
-CDeviceInfo* CDeviceInfo::NewL()
-    {
-    CDeviceInfo* self = NewLC();
-    CleanupStack::Pop( self );
-    return self;
-    }
-    
-CDeviceInfo* CDeviceInfo::NewLC()
-    {
-    CDeviceInfo* self = new ( ELeave ) CDeviceInfo();
-    CleanupStack::PushL( self );
-    self->ConstructL();
-    return self;
-    }
-
-void CDeviceInfo::ConstructL()
-    {   
-    CActiveScheduler::Add( this );
-    iTelephony = CTelephony::NewL();  
-    iWait = new ( ELeave ) CActiveSchedulerWait();
-    }
-    
-CDeviceInfo::CDeviceInfo()
-:CActive( EPriorityNormal ), iBatteryInfoV1Pkg( iBatteryInfoV1 ),
-        iPhoneIdV1Pkg( iPhoneIdV1 ),
-        iSignalStrengthV1Pckg( iSignalStrengthV1 ),
-        iSubscriberIdV1Pckg( iSubscriberIdV1 )
-    {
-    }
- 
-CDeviceInfo::~CDeviceInfo()
-    {
-    Cancel();
-    delete iTelephony;  
-    }
-
-TBuf<CTelephony::KPhoneSerialNumberSize> CDeviceInfo::imei()
-    {
-    Cancel();
-    iTelephony->GetPhoneId( iStatus, iPhoneIdV1Pkg );
-    SetActive();
-    
-    if ( !iWait->IsStarted() ) 
-        {
-        iWait->Start();
-        }
-    return iPhoneIdV1.iSerialNumber;
-    }
-
-TBuf<CTelephony::KPhoneModelIdSize> CDeviceInfo::model()
-    {
-    Cancel();
-    iTelephony->GetPhoneId( iStatus, iPhoneIdV1Pkg );
-    SetActive();
-    
-    if ( !iWait->IsStarted() ) 
-        {
-        iWait->Start();
-        }
-    return iPhoneIdV1.iModel;
-    }
-
-TBuf<CTelephony::KPhoneManufacturerIdSize> CDeviceInfo::manufacturer()
-    {
-    Cancel();
-    iTelephony->GetPhoneId( iStatus, iPhoneIdV1Pkg );
-    SetActive();
-    
-    if ( !iWait->IsStarted() ) 
-        {
-        iWait->Start();
-        }
-    return iPhoneIdV1.iManufacturer;
-    }
-
-TBuf<CTelephony::KIMSISize> CDeviceInfo::imsi()
-    {
-    Cancel();
-    iTelephony->GetSubscriberId( iStatus,iSubscriberIdV1Pckg );
-    SetActive();
-    
-    if (!iWait->IsStarted()) 
-        {
-        iWait->Start();
-        }
-    return iSubscriberIdV1.iSubscriberId;
-    }
-
-TUint CDeviceInfo::batteryLevel()
-    {
-    Cancel();
-    iTelephony->GetBatteryInfo( iStatus,iBatteryInfoV1Pkg );
-    SetActive();
-    
-    if ( !iWait->IsStarted() ) 
-        {
-        iWait->Start();
-        }
-    return iBatteryInfoV1.iChargeLevel;
-    }
-
-TInt32 CDeviceInfo::signalStrength()
-    {
-    Cancel();
-    iTelephony->GetSignalStrength( iStatus, iSignalStrengthV1Pckg );
-    SetActive();
-    if ( !iWait->IsStarted() )
-        {
-        iWait->Start();
-        }
-    return iSignalStrengthV1.iSignalStrength;
-    }
- 
-void CDeviceInfo::DoCancel()
-    {
-    iTelephony->CancelAsync( CTelephony::EGetPhoneIdCancel );
-    }
- 
-void CDeviceInfo::RunL()
-    {
-    iWait->AsyncStop();
-    }