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: // CDbNamesFactory class sl@0: // sl@0: // sl@0: sl@0: #ifndef __SDDBLIST_H__ sl@0: #define __SDDBLIST_H__ sl@0: sl@0: #include //RFs & TDriveNumber, includes for CBase. sl@0: sl@0: //Forward declarations sl@0: class RDbPropsFactory; sl@0: sl@0: //Global function sl@0: void CheckDriveL(RFs& aFs, TDriveNumber aDriveNumber); sl@0: sl@0: /** sl@0: CDbNamesFactory class describes an object which can be used to get a list of names of sl@0: secure shared databases, which have the same format UID. sl@0: CDbNamesFactory::DbNamesLC() is the acquisition method, which can be used for that. sl@0: The class also offers a static ExtractArgs() method, which can be used for extracting sl@0: the drive number and constructing a TDbPolicyRequest object from RMessage parameter sl@0: (EDbsDatabaseList related message). sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_CLASS(CDbNamesFactory) : public CBase sl@0: { sl@0: public: sl@0: static void ExtractArgs(const RMessage2& aMessage, TDriveNumber& aDriveNumber, sl@0: TDbPolicyRequest& aDbPolicyRequest); sl@0: static CDbNamesFactory* NewLC(); sl@0: virtual ~CDbNamesFactory(); sl@0: CDbDatabaseNames* DbNamesLC(TDriveNumber& aDriveNumber, sl@0: const TDbPolicyRequest& aDbPolicyRequest, sl@0: const RDbPropsFactory& aDbPropsFactory, sl@0: RFs& aFs); sl@0: sl@0: private: sl@0: CDbNamesFactory(); sl@0: void ConstructSearchPattern(const TDbPolicyRequest& aDbPolicyRequest); sl@0: void SearchL(RFs& aFs, CDbDatabaseNames* aDbNames); sl@0: sl@0: private: sl@0: TBuf iDbPath; sl@0: TBuf iDbNameCmnPart; sl@0: sl@0: }; sl@0: sl@0: #endif//__SDDBLIST_H__