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.
15 // CDbNamesFactory class
16 // "DBMS security" related - full DBMS security support
21 #include "Sd_DbList.h"
25 extern TBool CheckDrivesL(const TDesC& aPath1, const TDesC& aPath2);
28 A global method, which can be used to check presence of the drive, supplied as
30 @param aFs File session instance.
31 @param aDriveNumber Number of the drive, which will be checked. If there is no such drive
32 in the system, the function leaves with KErrNotReady error code.
35 void CheckDriveL(RFs& aFs, TDriveNumber aDriveNumber)
38 __LEAVE_IF_ERROR(aFs.Drive(driveInfo, aDriveNumber));
39 if(driveInfo.iType == EMediaNotPresent)
41 __LEAVE(KErrNotReady);
46 Standard phase-one factory method for CDbNamesFactory instances.
47 @return A pointer to created CDbNamesFactory instance.
49 CDbNamesFactory* CDbNamesFactory::NewLC()
51 CDbNamesFactory* self = new (ELeave) CDbNamesFactory;
52 CleanupStack::PushL(self);
58 CDbNamesFactory::~CDbNamesFactory()
63 Extracts the parameters from an EDbsDatabaseList aMessage.
64 @param aMessage EDbsDatabaseList message
65 @param aDriveNumber An output parameter, referencing the location, where the drive number will be stored.
66 @param aDbPolicyRequest An output parameter, referencing the location, where the constructed
67 TDbPolicyRequest will be stored.
69 void CDbNamesFactory::ExtractArgs(const RMessage2& aMessage,
70 TDriveNumber& aDriveNumber,
71 TDbPolicyRequest& aDbPolicyRequest)
73 aDriveNumber = static_cast <TDriveNumber> (aMessage.Int0());
74 aDbPolicyRequest.iUid = TUid::Uid(aMessage.Int1());
75 aDbPolicyRequest.iAccessType = EATSecure;
79 Creates CDbDatabaseNames instance and return it.
80 @param aDriveNumber The drive number to be searched.
81 @param aDbPolicyRequest A const reference to an object packing the security policy UID and the
82 request type - secure/nonsecure.
83 @param aDbPropsFactory A const reference to RDbPropsFactory instance, which methods will be used
84 in the process of constructing the list of CDbDatabaseNames names.
85 @param aFs A file session instance.
86 @return A pointer to the created CDbDatabaseNames instance.
88 CDbDatabaseNames* CDbNamesFactory::DbNamesLC(TDriveNumber& aDriveNumber,
89 const TDbPolicyRequest& aDbPolicyRequest,
90 const RDbPropsFactory& aDbPropsFactory,
93 ::CheckDriveL(aFs, aDriveNumber);
94 aDbPropsFactory.GetPrivatePathL(aDriveNumber, iDbPath);
95 ConstructSearchPattern(aDbPolicyRequest);
96 CDbDatabaseNames* dbNames = CDbDatabaseNames::NewLC();
97 SearchL(aFs, dbNames);
103 CDbNamesFactory::CDbNamesFactory()
108 Constructs search pattern for the database file names.
109 iDbPath & iDbNameCmnPart data members get initialized after the call.
110 @param aDbPolicyRequest A const reference to an object packing the security policy UID and the
111 request type - secure/nonsecure.
113 void CDbNamesFactory::ConstructSearchPattern(const TDbPolicyRequest& aDbPolicyRequest)
115 __ASSERT(iDbPath.Length() > 0);
116 RDbPropsFactory::ConstructCommonPart(aDbPolicyRequest.iUid, iDbNameCmnPart);
117 iDbNameCmnPart.Append('*');
118 __ASSERT(iDbNameCmnPart.Length() > 0);
122 Searches for databases in DBMS private directory and fill aDbNames container.
123 @param aFs A file session instance.
124 @param aDbNames An output parameter, where the database names will be stored.
125 @leave One of the system-wide error codes, excluding KErrNotFound.
127 void CDbNamesFactory::SearchL(RFs& aFs, CDbDatabaseNames* aDbNames)
130 TFindFile findFile(aFs);
132 TInt err = findFile.FindWildByDir(iDbNameCmnPart, iDbPath, paths);
136 CleanupStack::PushL(paths);
137 if(::CheckDrivesL(iDbPath, findFile.File()))
139 TInt cnt = paths->Count();
140 for(TInt i=0;i<cnt;++i)
142 const ::TEntry& entry = (*paths)[i];
143 //Reuse iDbPath, it is not needed anymore
144 TDes& name = iDbPath;
145 name.Copy(entry.iName);
146 RDbPropsFactory::StripCommonPart(name);
147 if (name.Length()<=KDbMaxName)
149 aDbNames->AddL(name);
153 CleanupStack::PopAndDestroy(paths);
155 else if(err != KErrNotFound)