diff -r b183ec05bd8c -r 19bba8228ff0 remotemgmt_plat/syncml_ds_customization_api/tsrc/synchconfigvalidator/customdatasynchdeviceinfo.cpp --- 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 - -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 CDeviceInfo::imei() - { - Cancel(); - iTelephony->GetPhoneId( iStatus, iPhoneIdV1Pkg ); - SetActive(); - - if ( !iWait->IsStarted() ) - { - iWait->Start(); - } - return iPhoneIdV1.iSerialNumber; - } - -TBuf CDeviceInfo::model() - { - Cancel(); - iTelephony->GetPhoneId( iStatus, iPhoneIdV1Pkg ); - SetActive(); - - if ( !iWait->IsStarted() ) - { - iWait->Start(); - } - return iPhoneIdV1.iModel; - } - -TBuf CDeviceInfo::manufacturer() - { - Cancel(); - iTelephony->GetPhoneId( iStatus, iPhoneIdV1Pkg ); - SetActive(); - - if ( !iWait->IsStarted() ) - { - iWait->Start(); - } - return iPhoneIdV1.iManufacturer; - } - -TBuf 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(); - }