diff -r 000000000000 -r 3553901f7fa8 telephonyserverplugins/simatktsy/src/CSatNotifyMoreTime.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/telephonyserverplugins/simatktsy/src/CSatNotifyMoreTime.cpp Tue Feb 02 01:41:59 2010 +0200 @@ -0,0 +1,157 @@ +// Copyright (c) 2005-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: +// Name : CSatNotifyMoreTime.cpp +// Part of : Common SIM ATK TSY / commonsimatktsy +// More time notification functionality of Sat Tsy +// Version : 1.0 +// + + + +//INCLUDES +#include // Etel SAT IPC definitions +#include "CSatTsy.h" // Tsy class header +#include "CSatNotifyMoreTime.h" // Class header +#include "CSatNotificationsTsy.h" // Tsy class header +#include "CBerTlv.h" // Ber Tlv data handling +#include "TTlv.h" // TTlv class +#include "CSatDataPackage.h" // Parameter packing +#include "TfLogger.h" // For TFLOGSTRING +#include "TSatUtility.h" // Utilities +#include "CSatTsyReqHandleStore.h" // Request handle class +#include "cmmmessagemanagerbase.h" // Message manager class for forwarding req. + +// ----------------------------------------------------------------------------- +// CSatNotifyMoreTime::NewL +// Two-phased constructor. +// ----------------------------------------------------------------------------- +// +CSatNotifyMoreTime* CSatNotifyMoreTime::NewL + ( + CSatNotificationsTsy* aNotificationsTsy + ) + { + TFLOGSTRING("CSAT: CSatNotifyMoreTime::NewL"); + CSatNotifyMoreTime* const satNotifyMoreTime = + new ( ELeave ) CSatNotifyMoreTime( aNotificationsTsy ); + CleanupStack::PushL( satNotifyMoreTime ); + satNotifyMoreTime->ConstructL(); + CleanupStack::Pop( satNotifyMoreTime ); + TFLOGSTRING("CSAT: CSatNotifyMoreTime::NewL, end of method"); + return satNotifyMoreTime; + } + +// ----------------------------------------------------------------------------- +// CSatNotifyMoreTime::~CSatNotifyMoreTime +// Destructor +// ----------------------------------------------------------------------------- +// +CSatNotifyMoreTime::~CSatNotifyMoreTime + ( + // None + ) + { + TFLOGSTRING("CSAT: CSatNotifyMoreTime::~CSatNotifyMoreTime"); + } + +// ----------------------------------------------------------------------------- +// CSatNotifyMoreTime::CSatNotifyMoreTime +// Default C++ constructor +// ----------------------------------------------------------------------------- +// +CSatNotifyMoreTime::CSatNotifyMoreTime + ( + CSatNotificationsTsy* aNotificationsTsy + ) : iNotificationsTsy ( aNotificationsTsy ) + { + // None + } + +// ----------------------------------------------------------------------------- +// CSatNotifyMoreTime::ConstructL +// Symbian 2nd phase constructor +// ----------------------------------------------------------------------------- +// +void CSatNotifyMoreTime::ConstructL + ( + // None + ) + { + TFLOGSTRING("CSAT: CSatNotifyMoreTime::ConstructL, does nothing"); + } + +// ----------------------------------------------------------------------------- +// CSatNotifyMoreTime::CompleteNotifyL +// This method completes an outstanding asynchronous NotifyMoreTime request. +// ----------------------------------------------------------------------------- +// +TInt CSatNotifyMoreTime::CompleteNotifyL + ( + CSatDataPackage* aDataPackage, + TInt /*aErrorCode*/ + ) + { + TFLOGSTRING("CSAT: CSatNotifyMoreTime::CompleteNotifyL"); + TInt ret( KErrNone ); + // Unpack parameters + TPtrC8* data; + aDataPackage->UnPackData( &data ); + // Get ber tlv + CBerTlv berTlv; + berTlv.SetData( *data ); + // Get command details tlv + CTlv commandDetails; + berTlv.TlvByTagValue( &commandDetails, KTlvCommandDetailsTag ); + // Store command details tlv + iNotificationsTsy->iTerminalRespData.iCommandDetails.Copy( + commandDetails.Data() ); + // Get command number + TUint8 pCmdNumber( commandDetails.GetShortInfo( ETLV_CommandNumber ) ); + + CreateTerminalRespL( pCmdNumber, RSat::KSuccess ); + + return ret; + } + +// ----------------------------------------------------------------------------- +// CSatNotifyMoreTime::CreateTerminalRespL +// Constructs more time specific part of terminal response and calls +// DOS to send the actual message. +// ----------------------------------------------------------------------------- +// +TInt CSatNotifyMoreTime::CreateTerminalRespL + ( + TUint8 aPCmdNumber, + TUint8 aGeneralResult + ) + { + TFLOGSTRING("CSAT: CSatNotifyMoreTime::CreateTerminalRespL"); + // Create and append response data + TTlv tlvSpecificData; + // General result + tlvSpecificData.AddTag( KTlvResultTag ); + tlvSpecificData.AddByte( aGeneralResult ); + // Prepare data + iNotificationsTsy->iTerminalRespData.iPCmdNumber = aPCmdNumber; + TPtrC8 data = tlvSpecificData.GetDataWithoutTopLevelTag(); + // Pack data + CSatDataPackage dataPackage; + dataPackage.PackData( &iNotificationsTsy->iTerminalRespData, &data ); + // Forward request to the DOS + return iNotificationsTsy->iSatTsy->MessageManager()->HandleRequestL( + ESatTerminalRsp, &dataPackage ); + } + +// End of file +