diff -r 000000000000 -r 3553901f7fa8 telephonyserverplugins/multimodetsy/Multimode/sms/smsutil.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/telephonyserverplugins/multimodetsy/Multimode/sms/smsutil.h Tue Feb 02 01:41:59 2010 +0200 @@ -0,0 +1,64 @@ +// Copyright (c) 1997-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: +// + +/** + @file + @internalAll +*/ + +#ifndef __ATSMSUTIL_H__ +#define __ATSMSUTIL_H__ + +#include // for RMobilePhone::TMobileAddress + +const TInt KMaxAsciiPduLength=400; +const TInt KMaxAsciiSCALength=80; + +class CATParamListEntry; + +class CATSmsUtils : public CBase + { +public: + static TInt AppendAddressToAscii(TDes8& aAscii,const RMobilePhone::TMobileAddress& aAddress,TBool aUse0340Format=EFalse); + static void AppendDataToAscii(TDes8& aAscii,const TDesC8& aData); + static TInt ConvertAsciiToBinary(const TDesC8& aAscii,TDes8& aData); + static TInt ReadAddressFromAscii(const TDesC8& aAscii,RMobilePhone::TMobileAddress& aAddress,TBool aPduUses0340Format=EFalse); + static TInt ReadAndRemoveAddressFromAscii(TDes8& aAscii,RMobilePhone::TMobileAddress& aAddress,TBool aPduUses0340Format=EFalse); + static TInt CopyAddressStringToAddressStruct(const TDesC8& aAddressValueString,const TDesC8& aAddressTypeString,RMobilePhone::TMobileAddress& aAddress); + static void GetTypeOfAddressInDecimal(const RMobilePhone::TMobileAddress& aAddress, TUint& aVal); + static void SetTypeOfAddressFromDecimal(RMobilePhone::TMobileAddress& aAddress,const TUint& aVal); + static TBool IsAddressChar(TChar aChar); + static void ConvertStoreNameToEtelMMVersion(TDes& aEtelMMVersion,const TDesC8& aPhoneVersion); + static void ConvertStoreNameToPhoneVersion(const TDesC& aEtelMMVersion,TDes8& aPhoneVersion); + + +private: + // Enum conversion functions + static RMobilePhone::TMobileTON ConvertTypeOfNumber(TInt aValue); + static TInt ConvertTypeOfNumber(RMobilePhone::TMobileTON aEnum); + static RMobilePhone::TMobileNPI ConvertNumberingPlan(TInt aValue); + static TInt ConvertNumberingPlan(RMobilePhone::TMobileNPI aEnum); + + // ASCII/Binary conversion functions + static void AppendOctet(TInt aOctet,TDes8& aAscii); + static TInt ConvertAddressChar(TChar aChar); + static TChar ConvertAddressChar(TInt aBinary); + }; + + + + + +#endif