Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // CDbNamesFactory class
18 #ifndef __SDDBLIST_H__
19 #define __SDDBLIST_H__
21 #include <f32file.h> //RFs & TDriveNumber, includes <e32base.h> for CBase.
23 //Forward declarations
24 class RDbPropsFactory;
27 void CheckDriveL(RFs& aFs, TDriveNumber aDriveNumber);
30 CDbNamesFactory class describes an object which can be used to get a list of names of
31 secure shared databases, which have the same format UID.
32 CDbNamesFactory::DbNamesLC() is the acquisition method, which can be used for that.
33 The class also offers a static ExtractArgs() method, which can be used for extracting
34 the drive number and constructing a TDbPolicyRequest object from RMessage parameter
35 (EDbsDatabaseList related message).
38 NONSHARABLE_CLASS(CDbNamesFactory) : public CBase
41 static void ExtractArgs(const RMessage2& aMessage, TDriveNumber& aDriveNumber,
42 TDbPolicyRequest& aDbPolicyRequest);
43 static CDbNamesFactory* NewLC();
44 virtual ~CDbNamesFactory();
45 CDbDatabaseNames* DbNamesLC(TDriveNumber& aDriveNumber,
46 const TDbPolicyRequest& aDbPolicyRequest,
47 const RDbPropsFactory& aDbPropsFactory,
52 void ConstructSearchPattern(const TDbPolicyRequest& aDbPolicyRequest);
53 void SearchL(RFs& aFs, CDbDatabaseNames* aDbNames);
56 TBuf<KMaxFileName> iDbPath;
57 TBuf<KMaxFileName> iDbNameCmnPart;
61 #endif//__SDDBLIST_H__