sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Sd_DbList.cpp
|
sl@0
|
15 |
// CDbNamesFactory class
|
sl@0
|
16 |
// "DBMS security" related - full DBMS security support
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "SD_STD.H"
|
sl@0
|
21 |
#include "Sd_DbList.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
using namespace DBSC;
|
sl@0
|
24 |
|
sl@0
|
25 |
extern TBool CheckDrivesL(const TDesC& aPath1, const TDesC& aPath2);
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
A global method, which can be used to check presence of the drive, supplied as
|
sl@0
|
29 |
a parameter.
|
sl@0
|
30 |
@param aFs File session instance.
|
sl@0
|
31 |
@param aDriveNumber Number of the drive, which will be checked. If there is no such drive
|
sl@0
|
32 |
in the system, the function leaves with KErrNotReady error code.
|
sl@0
|
33 |
@internalComponent.
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
void CheckDriveL(RFs& aFs, TDriveNumber aDriveNumber)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
TDriveInfo driveInfo;
|
sl@0
|
38 |
__LEAVE_IF_ERROR(aFs.Drive(driveInfo, aDriveNumber));
|
sl@0
|
39 |
if(driveInfo.iType == EMediaNotPresent)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
__LEAVE(KErrNotReady);
|
sl@0
|
42 |
}
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
Standard phase-one factory method for CDbNamesFactory instances.
|
sl@0
|
47 |
@return A pointer to created CDbNamesFactory instance.
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
CDbNamesFactory* CDbNamesFactory::NewLC()
|
sl@0
|
50 |
{
|
sl@0
|
51 |
CDbNamesFactory* self = new (ELeave) CDbNamesFactory;
|
sl@0
|
52 |
CleanupStack::PushL(self);
|
sl@0
|
53 |
return self;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
CDbNamesFactory::~CDbNamesFactory()
|
sl@0
|
59 |
{
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
Extracts the parameters from an EDbsDatabaseList aMessage.
|
sl@0
|
64 |
@param aMessage EDbsDatabaseList message
|
sl@0
|
65 |
@param aDriveNumber An output parameter, referencing the location, where the drive number will be stored.
|
sl@0
|
66 |
@param aDbPolicyRequest An output parameter, referencing the location, where the constructed
|
sl@0
|
67 |
TDbPolicyRequest will be stored.
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
void CDbNamesFactory::ExtractArgs(const RMessage2& aMessage,
|
sl@0
|
70 |
TDriveNumber& aDriveNumber,
|
sl@0
|
71 |
TDbPolicyRequest& aDbPolicyRequest)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
aDriveNumber = static_cast <TDriveNumber> (aMessage.Int0());
|
sl@0
|
74 |
aDbPolicyRequest.iUid = TUid::Uid(aMessage.Int1());
|
sl@0
|
75 |
aDbPolicyRequest.iAccessType = EATSecure;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
Creates CDbDatabaseNames instance and return it.
|
sl@0
|
80 |
@param aDriveNumber The drive number to be searched.
|
sl@0
|
81 |
@param aDbPolicyRequest A const reference to an object packing the security policy UID and the
|
sl@0
|
82 |
request type - secure/nonsecure.
|
sl@0
|
83 |
@param aDbPropsFactory A const reference to RDbPropsFactory instance, which methods will be used
|
sl@0
|
84 |
in the process of constructing the list of CDbDatabaseNames names.
|
sl@0
|
85 |
@param aFs A file session instance.
|
sl@0
|
86 |
@return A pointer to the created CDbDatabaseNames instance.
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
CDbDatabaseNames* CDbNamesFactory::DbNamesLC(TDriveNumber& aDriveNumber,
|
sl@0
|
89 |
const TDbPolicyRequest& aDbPolicyRequest,
|
sl@0
|
90 |
const RDbPropsFactory& aDbPropsFactory,
|
sl@0
|
91 |
RFs& aFs)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
::CheckDriveL(aFs, aDriveNumber);
|
sl@0
|
94 |
aDbPropsFactory.GetPrivatePathL(aDriveNumber, iDbPath);
|
sl@0
|
95 |
ConstructSearchPattern(aDbPolicyRequest);
|
sl@0
|
96 |
CDbDatabaseNames* dbNames = CDbDatabaseNames::NewLC();
|
sl@0
|
97 |
SearchL(aFs, dbNames);
|
sl@0
|
98 |
return dbNames;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
*/
|
sl@0
|
103 |
CDbNamesFactory::CDbNamesFactory()
|
sl@0
|
104 |
{
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
Constructs search pattern for the database file names.
|
sl@0
|
109 |
iDbPath & iDbNameCmnPart data members get initialized after the call.
|
sl@0
|
110 |
@param aDbPolicyRequest A const reference to an object packing the security policy UID and the
|
sl@0
|
111 |
request type - secure/nonsecure.
|
sl@0
|
112 |
*/
|
sl@0
|
113 |
void CDbNamesFactory::ConstructSearchPattern(const TDbPolicyRequest& aDbPolicyRequest)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
__ASSERT(iDbPath.Length() > 0);
|
sl@0
|
116 |
RDbPropsFactory::ConstructCommonPart(aDbPolicyRequest.iUid, iDbNameCmnPart);
|
sl@0
|
117 |
iDbNameCmnPart.Append('*');
|
sl@0
|
118 |
__ASSERT(iDbNameCmnPart.Length() > 0);
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
Searches for databases in DBMS private directory and fill aDbNames container.
|
sl@0
|
123 |
@param aFs A file session instance.
|
sl@0
|
124 |
@param aDbNames An output parameter, where the database names will be stored.
|
sl@0
|
125 |
@leave One of the system-wide error codes, excluding KErrNotFound.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
void CDbNamesFactory::SearchL(RFs& aFs, CDbDatabaseNames* aDbNames)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
__ASSERT(aDbNames);
|
sl@0
|
130 |
TFindFile findFile(aFs);
|
sl@0
|
131 |
CDir* paths = NULL;
|
sl@0
|
132 |
TInt err = findFile.FindWildByDir(iDbNameCmnPart, iDbPath, paths);
|
sl@0
|
133 |
if(err == KErrNone)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
__ASSERT(paths);
|
sl@0
|
136 |
CleanupStack::PushL(paths);
|
sl@0
|
137 |
if(::CheckDrivesL(iDbPath, findFile.File()))
|
sl@0
|
138 |
{
|
sl@0
|
139 |
TInt cnt = paths->Count();
|
sl@0
|
140 |
for(TInt i=0;i<cnt;++i)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
const ::TEntry& entry = (*paths)[i];
|
sl@0
|
143 |
//Reuse iDbPath, it is not needed anymore
|
sl@0
|
144 |
TDes& name = iDbPath;
|
sl@0
|
145 |
name.Copy(entry.iName);
|
sl@0
|
146 |
RDbPropsFactory::StripCommonPart(name);
|
sl@0
|
147 |
if (name.Length()<=KDbMaxName)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
aDbNames->AddL(name);
|
sl@0
|
150 |
}
|
sl@0
|
151 |
}
|
sl@0
|
152 |
}
|
sl@0
|
153 |
CleanupStack::PopAndDestroy(paths);
|
sl@0
|
154 |
}
|
sl@0
|
155 |
else if(err != KErrNotFound)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
__LEAVE(err);
|
sl@0
|
158 |
}
|
sl@0
|
159 |
}
|