os/persistentdata/persistentstorage/dbms/sdbms/Sd_DbList.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // CDbNamesFactory class
    15 // 
    16 //
    17 
    18 #ifndef __SDDBLIST_H__
    19 #define __SDDBLIST_H__
    20 
    21 #include <f32file.h> //RFs & TDriveNumber, includes <e32base.h> for CBase.
    22 
    23 //Forward declarations 
    24 class RDbPropsFactory;
    25 
    26 //Global function
    27 void CheckDriveL(RFs& aFs, TDriveNumber aDriveNumber);
    28 
    29 /**
    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).
    36 @internalComponent
    37 */
    38 NONSHARABLE_CLASS(CDbNamesFactory) : public CBase
    39 	{
    40 public:
    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, 
    48 								RFs& aFs);
    49 
    50 private:
    51 	CDbNamesFactory();
    52 	void ConstructSearchPattern(const TDbPolicyRequest& aDbPolicyRequest);
    53 	void SearchL(RFs& aFs, CDbDatabaseNames* aDbNames);
    54 
    55 private:
    56 	TBuf<KMaxFileName>	iDbPath;
    57 	TBuf<KMaxFileName>	iDbNameCmnPart;
    58 
    59 	};
    60 
    61 #endif//__SDDBLIST_H__