remotemgmt_plat/syncml_ds_customization_api/tsrc/synchconfigvalidator/customdatasynchdeviceinfo.cpp
changeset 60 eb6690d0d439
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/remotemgmt_plat/syncml_ds_customization_api/tsrc/synchconfigvalidator/customdatasynchdeviceinfo.cpp	Thu Aug 19 17:35:34 2010 +0530
@@ -0,0 +1,143 @@
+/*
+* 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();
+    }