diff -r 000000000000 -r dfb7c4ff071f commsfwtools/preparedefaultcommsdatabase/inc/CommsDatUtils.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/commsfwtools/preparedefaultcommsdatabase/inc/CommsDatUtils.h Thu Dec 17 09:22:25 2009 +0200 @@ -0,0 +1,88 @@ +// Copyright (c) 2004-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: +// Utility functions to retrieve comms data for specific use-cases and present it in a particular way. +// +// + +/** + @file + @internalAll + @released +*/ +#ifndef __COMMSDATUTILS_H__ +#define __COMMSDATUTILS_H__ + +#include +#include +#include + +class CCommsDatUtilImpl; +namespace CommsDatUtils + +{ + +class CCommsDatUtils : public CBase + { + public : + + IMPORT_C static CCommsDatUtils* NewL(); + + IMPORT_C ~CCommsDatUtils(); + + // Set `aDialString` to be the appropriate string based on the directory + // number, where the dial is being performed and the chargecard to use. + // `ResolvePhoneNumberL()` opens a comms database to perform the + // resolution + IMPORT_C static void ResolvePhoneNumberL(TDesC& aNumber, TDes& aDialString, TParseMode aDialParseMode, TUint32 aLocationId, TUint32 aChargecardId); + + // Set `aDialString` to be the appropriate string based on the directory + // number, where the dial is being performed and the chargecard to use. + IMPORT_C static void ResolvePhoneNumberFromDatabaseL(TDesC& aNumber, TDes& aDialString, TParseMode aDialParseMode, TUint32 aLocationId, TUint32 aChargecardId); + + // Check access to database fields + IMPORT_C TInt CheckReadCapability( const TDesC& aField, const RMessagePtr2* aMessage ); + + IMPORT_C TInt CheckWriteCapability( const TDesC& aField, const RMessagePtr2* aMessage ); + + private: + CCommsDatUtils() {}; + void ConstructL(); + + private : + + CCommsDatUtilImpl* iUtilsImpl; + }; + + +#ifndef SYMBIAN_NON_SEAMLESS_NETWORK_BEARER_MOBILITY +class NameLookUp + { + public: + /** Looks up the field specified and supplies a descriptor matching the name. + @param aElementId The field to look up. + @param aFieldName returns a pointer to the HBufC containing the string. + @param aDataType returns the data type of the found field. + @return The reversed value. */ + IMPORT_C static TInt FieldNameLookup(CommsDat::TMDBElementId aElementId, HBufC*& aFieldName, TInt& aDataType ); + private: + NameLookUp() {} // no construction since we are now private. + }; +#endif // SYMBIAN_NON_SEAMLESS_NETWORK_BEARER_MOBILITY + + + +} //end namespace CommsDat::utils + + +#endif //__COMMSDATUTILS_H__