sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // RDbPropsFactory class sl@0: // sl@0: // sl@0: sl@0: #ifndef __SD_DBPROPS_H__ sl@0: #define __SD_DBPROPS_H__ sl@0: sl@0: #include "D32DBMS.H" sl@0: #include "D32Security.h" sl@0: sl@0: using namespace DBSC; sl@0: sl@0: /** sl@0: This structure describes an object, which conatains sl@0: database properties, which can be collected from a database path and format string. sl@0: @internalComponent sl@0: */ sl@0: struct TDbProps sl@0: { sl@0: TDbPolicyRequest iDbPolicyRequest; sl@0: TDriveNumber iDriveNumber; sl@0: TFileName iPath; sl@0: TDbName iFormatStr; sl@0: }; sl@0: sl@0: /** sl@0: RDbPropsFactory class is used to parse the supplied database path and format string and sl@0: collect from them some database properties, such as requested access type, drive number, sl@0: security policy uid, path, format string sl@0: @internalComponent sl@0: */ sl@0: class RDbPropsFactory sl@0: { sl@0: public: sl@0: static void StripCommonPart(TDes& aDbName); sl@0: static void ConstructCommonPart(TUid aPolicyUid, TDes& aRes); sl@0: RDbPropsFactory(RFs&); sl@0: void OpenL(); sl@0: void Close(); sl@0: TDbProps* ExtractLC(const TDesC& aPath, const TDesC& aFormatStr); sl@0: TDbProps* ExtractLC(const TDesC& aPath, TUid aPolicyUid); sl@0: void GetPrivatePathL(TDriveNumber aDriveNumber, TDes& aRes) const; sl@0: sl@0: private: sl@0: void ExtractSecureL(const TDesC& aFormatStr, TDbProps& aDbProps); sl@0: void ExtractNonSecureL(const TDesC& aPath, const TDesC& aFormatStr, TDbProps& aDbProps); sl@0: void ConstructFullDbPathL(TDbProps& aDbProps); sl@0: void ConstructFormatString(TDbProps& aDbProps, const TDesC& aFormatStr); sl@0: sl@0: private: sl@0: RFs& iFs; sl@0: TParse* iFileNameParser; sl@0: HBufC* iPrivateDataPath; sl@0: sl@0: }; sl@0: sl@0: #endif//__SD_DBPROPS_H__