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 |
// CPDTextLoader class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#define __INCLUDE_CAPABILITY_NAMES__
|
sl@0
|
19 |
#define __REFERENCE_CAPABILITY_NAMES__
|
sl@0
|
20 |
#include "e32capability.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "SC_Strings.h"
|
sl@0
|
23 |
#include "SC_TextIn.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
namespace DBSC
|
sl@0
|
26 |
{
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
Max capability count, when SID or VID used.
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
const TInt KMaxCapabilityCount1 = 3;
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
Max capability count, when no SID and no VID are used.
|
sl@0
|
36 |
@internalComponent
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
const TInt KMaxCapabilityCount2 = 7;
|
sl@0
|
39 |
|
sl@0
|
40 |
static TInt CompareCapabilities(const TCapability& aLeft, const TCapability& aRight)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
return aRight - aLeft;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
TStmtProps describes an object representing text file statement type and value
|
sl@0
|
47 |
(the right side of "=" expression)
|
sl@0
|
48 |
@internalComponent
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
struct TStmtProps
|
sl@0
|
51 |
{
|
sl@0
|
52 |
inline TStmtProps() :
|
sl@0
|
53 |
iType(EStmtTEof),
|
sl@0
|
54 |
iValue(NULL, 0)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
}
|
sl@0
|
57 |
TStmtType iType;
|
sl@0
|
58 |
TPtrC iValue;
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
StmtType2Class() function returns the statement class of the supplied statement type parameter.
|
sl@0
|
63 |
@param aType Statement type.
|
sl@0
|
64 |
@return Statement class.
|
sl@0
|
65 |
@internalComponent
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
static TStmtClass StmtType2Class(TStmtType aType)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
switch(aType)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
case EStmtTComment:
|
sl@0
|
72 |
case EStmtTBlank:
|
sl@0
|
73 |
return EStmtCNoData;
|
sl@0
|
74 |
case EStmtTDatabase:
|
sl@0
|
75 |
case EStmtTTable:
|
sl@0
|
76 |
return EStmtCPolicyObj;
|
sl@0
|
77 |
case EStmtTRead:
|
sl@0
|
78 |
case EStmtTWrite:
|
sl@0
|
79 |
case EStmtTSchema:
|
sl@0
|
80 |
return EStmtCPolicyType;
|
sl@0
|
81 |
case EStmtTCapability:
|
sl@0
|
82 |
case EStmtTSID:
|
sl@0
|
83 |
case EStmtTVID:
|
sl@0
|
84 |
return EStmtCPolicyItem;
|
sl@0
|
85 |
case EStmtTBackup:
|
sl@0
|
86 |
return EStmtCBackup;
|
sl@0
|
87 |
default:
|
sl@0
|
88 |
break;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
return EStmtCInvalid;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
Capabilities count.
|
sl@0
|
95 |
@internalComponent
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
|
sl@0
|
98 |
const TInt KCapabilityCount = sizeof(CapabilityNames) / sizeof(CapabilityNames[0]);
|
sl@0
|
99 |
|
sl@0
|
100 |
/**
|
sl@0
|
101 |
CapabilityName2Id() function searches and returns the related capability ID having
|
sl@0
|
102 |
the capability name as an input parameter.
|
sl@0
|
103 |
@param aName Capability name
|
sl@0
|
104 |
@return Related to aName capability ID
|
sl@0
|
105 |
@internalComponent
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
static TCapability CapabilityName2Id(const TDesC& aName)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
const TInt KMaxCapabilityStringLen = 20;
|
sl@0
|
110 |
|
sl@0
|
111 |
TBufC8<KMaxCapabilityStringLen> cap;
|
sl@0
|
112 |
TPtr8 capPtr (cap.Des());
|
sl@0
|
113 |
|
sl@0
|
114 |
capPtr.Copy(aName);
|
sl@0
|
115 |
|
sl@0
|
116 |
for(TInt i=0;i<KCapabilityCount;++i)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
if(0 == capPtr.CompareF(TBuf8<20>((TText8*)CapabilityNames[i])))
|
sl@0
|
119 |
return (TCapability)i;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
return (TCapability) -1; // Return 'None' if no other capabilities are found
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
Statement keywords, which format is:
|
sl@0
|
126 |
<Keyword>
|
sl@0
|
127 |
KStmtKeywordT1 array is in 1:1 relation with KStmtT1 array, except the last KStmtT1
|
sl@0
|
128 |
member - EStmtTInvalid - it does not have a match in KStmtKeywordT1 array.
|
sl@0
|
129 |
@internalComponent
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
const TDesC* const KStmtKeywordT1[] =
|
sl@0
|
132 |
{
|
sl@0
|
133 |
&KDbStr(), &KTblStr(), &KReadStr(), &KWriteStr(), &KSchemaStr(), &KBackupStr()
|
sl@0
|
134 |
};
|
sl@0
|
135 |
|
sl@0
|
136 |
/**
|
sl@0
|
137 |
Statements count, which format is:
|
sl@0
|
138 |
<Keyword>
|
sl@0
|
139 |
@internalComponent
|
sl@0
|
140 |
*/
|
sl@0
|
141 |
const TInt KStmtT1Count = sizeof(KStmtKeywordT1) / sizeof(KStmtKeywordT1[0]);
|
sl@0
|
142 |
|
sl@0
|
143 |
/**
|
sl@0
|
144 |
Statement IDs, which format is:
|
sl@0
|
145 |
<Keyword>
|
sl@0
|
146 |
KStmtKeywordT1 array is in 1:1 relation with KStmtT1 array, except the last KStmtT1
|
sl@0
|
147 |
member - EStmtTInvalid - it does not have a match in KStmtKeywordT1 array.
|
sl@0
|
148 |
"EStmtTInvalid" always has to be the last array element.
|
sl@0
|
149 |
@internalComponent
|
sl@0
|
150 |
*/
|
sl@0
|
151 |
const TStmtType KStmtT1[KStmtT1Count + 1] =
|
sl@0
|
152 |
{
|
sl@0
|
153 |
EStmtTDatabase, EStmtTTable, EStmtTRead, EStmtTWrite, EStmtTSchema, EStmtTBackup, EStmtTInvalid
|
sl@0
|
154 |
};
|
sl@0
|
155 |
|
sl@0
|
156 |
/**
|
sl@0
|
157 |
StmtKeywordT1ToId() function searches and returns the related statement ID having
|
sl@0
|
158 |
the statement keyword as an input parameter.
|
sl@0
|
159 |
@param aKeyword Statement keyword
|
sl@0
|
160 |
@return Related to aKeyword statement ID
|
sl@0
|
161 |
@internalComponent
|
sl@0
|
162 |
*/
|
sl@0
|
163 |
static TStmtType StmtKeywordT1ToId(const TDesC& aKeyword)
|
sl@0
|
164 |
{
|
sl@0
|
165 |
TInt i;
|
sl@0
|
166 |
for(i=0;i<KStmtT1Count && aKeyword.CompareF(*(KStmtKeywordT1[i]));++i)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
}
|
sl@0
|
169 |
return KStmtT1[i];
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
Statement keywords, which format is:
|
sl@0
|
174 |
<Keyword>=<Data>
|
sl@0
|
175 |
KStmtKeywordT2 array is in 1:1 relation with KStmtT2 array, except the last KStmtT2
|
sl@0
|
176 |
member - EStmtTInvalid - it does not have a match in KStmtKeywordT2 array.
|
sl@0
|
177 |
@internalComponent
|
sl@0
|
178 |
*/
|
sl@0
|
179 |
const TDesC* const KStmtKeywordT2[] =
|
sl@0
|
180 |
{
|
sl@0
|
181 |
&KNameStr(), &KCapabilityStr(), &KSIDStr(), &KVIDStr()
|
sl@0
|
182 |
};
|
sl@0
|
183 |
|
sl@0
|
184 |
/**
|
sl@0
|
185 |
Statements count, which format is:
|
sl@0
|
186 |
<Keyword>=<Data>
|
sl@0
|
187 |
@internalComponent
|
sl@0
|
188 |
*/
|
sl@0
|
189 |
const TInt KStmtT2Count = sizeof(KStmtKeywordT2) / sizeof(KStmtKeywordT2[0]);
|
sl@0
|
190 |
|
sl@0
|
191 |
/**
|
sl@0
|
192 |
Statement IDs, which format is:
|
sl@0
|
193 |
<Keyword>=<Data>
|
sl@0
|
194 |
KStmtKeywordT2 array is in 1:1 relation with KStmtT2 array, except the last KStmtT2
|
sl@0
|
195 |
member - EStmtTInvalid - it does not have a match in KStmtKeywordT2 array.
|
sl@0
|
196 |
EStmtTInvalid always has to be the last element in KStmtT2 array.
|
sl@0
|
197 |
@internalComponent
|
sl@0
|
198 |
*/
|
sl@0
|
199 |
const TStmtType KStmtT2[KStmtT2Count + 1] =
|
sl@0
|
200 |
{
|
sl@0
|
201 |
EStmtTName, EStmtTCapability, EStmtTSID, EStmtTVID, EStmtTInvalid
|
sl@0
|
202 |
};
|
sl@0
|
203 |
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
StmtKeywordT2ToId() function searches and returns the related statement ID having
|
sl@0
|
206 |
the statement keyword as an input parameter.
|
sl@0
|
207 |
@param aKeyword Statement keyword
|
sl@0
|
208 |
@return Related to aKeyword statement ID
|
sl@0
|
209 |
@internalComponent
|
sl@0
|
210 |
*/
|
sl@0
|
211 |
static TStmtType StmtKeywordT2ToId(const TDesC& aKeyword)
|
sl@0
|
212 |
{
|
sl@0
|
213 |
TInt i;
|
sl@0
|
214 |
for(i=0;i<KStmtT2Count && aKeyword.CompareF(*(KStmtKeywordT2[i]));++i)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
}
|
sl@0
|
217 |
return KStmtT2[i];
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
/**
|
sl@0
|
221 |
TDes::Trim() does not work properly when the descriptor length is 0,
|
sl@0
|
222 |
or the descriptor holds a NULL pointer.
|
sl@0
|
223 |
@internalComponent
|
sl@0
|
224 |
*/
|
sl@0
|
225 |
static void Trim(TDes& aDes)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
if(aDes.Length() > 0)
|
sl@0
|
228 |
{
|
sl@0
|
229 |
aDes.Trim();
|
sl@0
|
230 |
}
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
/**
|
sl@0
|
234 |
StmtType2PolicyType() function returns the related to aStmtType value - policy type.
|
sl@0
|
235 |
@param aStmtType Statement type
|
sl@0
|
236 |
@return The related policy type - R/W/S
|
sl@0
|
237 |
@internalComponent
|
sl@0
|
238 |
*/
|
sl@0
|
239 |
static TPolicyType StmtType2PolicyType(TStmtType aStmtType)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
switch(aStmtType)
|
sl@0
|
242 |
{
|
sl@0
|
243 |
case EStmtTRead:
|
sl@0
|
244 |
return EPTRead;
|
sl@0
|
245 |
case EStmtTWrite:
|
sl@0
|
246 |
return EPTWrite;
|
sl@0
|
247 |
case EStmtTSchema:
|
sl@0
|
248 |
return EPTSchema;
|
sl@0
|
249 |
default:
|
sl@0
|
250 |
break;
|
sl@0
|
251 |
}
|
sl@0
|
252 |
return EPTNone;
|
sl@0
|
253 |
}
|
sl@0
|
254 |
|
sl@0
|
255 |
/**
|
sl@0
|
256 |
Creates TSecurityPolicy instance of type 1: SID and a set of up to 3 capabilities.
|
sl@0
|
257 |
@param aSid Security ID
|
sl@0
|
258 |
@param aCapabilities Capabilities array.
|
sl@0
|
259 |
@param aSecurityPolicy Output. Created security policy.
|
sl@0
|
260 |
@internalComponent
|
sl@0
|
261 |
*/
|
sl@0
|
262 |
static void CreateSecurityPolicyT1(TSecureId aSid, const RArray<TCapability>& aCapabilities,
|
sl@0
|
263 |
TSecurityPolicy& aSecurityPolicy)
|
sl@0
|
264 |
{
|
sl@0
|
265 |
TInt count = aCapabilities.Count();
|
sl@0
|
266 |
if(count == 0)
|
sl@0
|
267 |
{
|
sl@0
|
268 |
aSecurityPolicy = TSecurityPolicy(aSid);
|
sl@0
|
269 |
}
|
sl@0
|
270 |
else if(count == 1)
|
sl@0
|
271 |
{
|
sl@0
|
272 |
aSecurityPolicy = TSecurityPolicy(aSid, aCapabilities[0]);
|
sl@0
|
273 |
}
|
sl@0
|
274 |
else if(count == 2)
|
sl@0
|
275 |
{
|
sl@0
|
276 |
aSecurityPolicy = TSecurityPolicy(aSid, aCapabilities[0], aCapabilities[1]);
|
sl@0
|
277 |
}
|
sl@0
|
278 |
else if(count == 3)
|
sl@0
|
279 |
{
|
sl@0
|
280 |
aSecurityPolicy = TSecurityPolicy(aSid, aCapabilities[0], aCapabilities[1], aCapabilities[2]);
|
sl@0
|
281 |
}
|
sl@0
|
282 |
else
|
sl@0
|
283 |
{
|
sl@0
|
284 |
User::Invariant();
|
sl@0
|
285 |
}
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
/**
|
sl@0
|
289 |
Creates TSecurityPolicy instance of type 2: VID and a set of up to 3 capabilities.
|
sl@0
|
290 |
@param aVid Vendor ID
|
sl@0
|
291 |
@param aCapabilities Capabilities array.
|
sl@0
|
292 |
@param aSecurityPolicy Output. Created security policy.
|
sl@0
|
293 |
@internalComponent
|
sl@0
|
294 |
*/
|
sl@0
|
295 |
static void CreateSecurityPolicyT2(TVendorId aVid, const RArray<TCapability>& aCapabilities,
|
sl@0
|
296 |
TSecurityPolicy& aSecurityPolicy)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
TInt count = aCapabilities.Count();
|
sl@0
|
299 |
if(count == 0)
|
sl@0
|
300 |
{
|
sl@0
|
301 |
aSecurityPolicy = TSecurityPolicy(aVid);
|
sl@0
|
302 |
}
|
sl@0
|
303 |
else if(count == 1)
|
sl@0
|
304 |
{
|
sl@0
|
305 |
aSecurityPolicy = TSecurityPolicy(aVid, aCapabilities[0]);
|
sl@0
|
306 |
}
|
sl@0
|
307 |
else if(count == 2)
|
sl@0
|
308 |
{
|
sl@0
|
309 |
aSecurityPolicy = TSecurityPolicy(aVid, aCapabilities[0], aCapabilities[1]);
|
sl@0
|
310 |
}
|
sl@0
|
311 |
else if(count == 3)
|
sl@0
|
312 |
{
|
sl@0
|
313 |
aSecurityPolicy = TSecurityPolicy(aVid, aCapabilities[0], aCapabilities[1], aCapabilities[2]);
|
sl@0
|
314 |
}
|
sl@0
|
315 |
else
|
sl@0
|
316 |
{
|
sl@0
|
317 |
User::Invariant();
|
sl@0
|
318 |
}
|
sl@0
|
319 |
}
|
sl@0
|
320 |
|
sl@0
|
321 |
/**
|
sl@0
|
322 |
Creates TSecurityPolicy instance of type 3: A set of up to 7 capabilities.
|
sl@0
|
323 |
@param aCapabilities Capabilities array.
|
sl@0
|
324 |
@param aSecurityPolicy Output. Created security policy.
|
sl@0
|
325 |
@internalComponent
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
static void CreateSecurityPolicyT3(const RArray<TCapability>& aCapabilities, TSecurityPolicy& aSecurityPolicy)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
TInt count = aCapabilities.Count();
|
sl@0
|
330 |
if(count == 1)
|
sl@0
|
331 |
{
|
sl@0
|
332 |
aSecurityPolicy = TSecurityPolicy(aCapabilities[0]);
|
sl@0
|
333 |
}
|
sl@0
|
334 |
else if(count == 2)
|
sl@0
|
335 |
{
|
sl@0
|
336 |
aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1]);
|
sl@0
|
337 |
}
|
sl@0
|
338 |
else if(count == 3)
|
sl@0
|
339 |
{
|
sl@0
|
340 |
aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2]);
|
sl@0
|
341 |
}
|
sl@0
|
342 |
else if(count == 4)
|
sl@0
|
343 |
{
|
sl@0
|
344 |
aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2], aCapabilities[3]);
|
sl@0
|
345 |
}
|
sl@0
|
346 |
else if(count == 5)
|
sl@0
|
347 |
{
|
sl@0
|
348 |
aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2], aCapabilities[3], aCapabilities[4]);
|
sl@0
|
349 |
}
|
sl@0
|
350 |
else if(count == 6)
|
sl@0
|
351 |
{
|
sl@0
|
352 |
aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2], aCapabilities[3], aCapabilities[4], aCapabilities[5]);
|
sl@0
|
353 |
}
|
sl@0
|
354 |
else if(count == 7)
|
sl@0
|
355 |
{
|
sl@0
|
356 |
aSecurityPolicy = TSecurityPolicy(aCapabilities[0], aCapabilities[1], aCapabilities[2], aCapabilities[3], aCapabilities[4], aCapabilities[5], aCapabilities[6]);
|
sl@0
|
357 |
}
|
sl@0
|
358 |
else
|
sl@0
|
359 |
{
|
sl@0
|
360 |
User::Invariant();
|
sl@0
|
361 |
}
|
sl@0
|
362 |
}
|
sl@0
|
363 |
|
sl@0
|
364 |
/**
|
sl@0
|
365 |
Creates TSecurityPolicy instance (initializing aSecurityPolicy parameter).
|
sl@0
|
366 |
@param aSid Security ID
|
sl@0
|
367 |
@param aVid Vendor ID
|
sl@0
|
368 |
@param aCapabilities Capabilities array.
|
sl@0
|
369 |
@leave KErrCorrupt Bad set of SID/VID/Capabilities
|
sl@0
|
370 |
@internalComponent
|
sl@0
|
371 |
*/
|
sl@0
|
372 |
static void CreateSecurityPolicyL(TSecureId aSid, TVendorId aVid,
|
sl@0
|
373 |
const RArray<TCapability>& aCapabilities,
|
sl@0
|
374 |
TSecurityPolicy& aSecurityPolicy)
|
sl@0
|
375 |
{
|
sl@0
|
376 |
TInt cababilityCount = aCapabilities.Count();
|
sl@0
|
377 |
if(aSid != 0 && aVid != 0)
|
sl@0
|
378 |
{
|
sl@0
|
379 |
__LEAVE(KErrCorrupt);
|
sl@0
|
380 |
}
|
sl@0
|
381 |
if(aSid != 0 || aVid != 0)
|
sl@0
|
382 |
{
|
sl@0
|
383 |
if(cababilityCount > KMaxCapabilityCount1)
|
sl@0
|
384 |
{
|
sl@0
|
385 |
__LEAVE(KErrCorrupt);
|
sl@0
|
386 |
}
|
sl@0
|
387 |
if(aSid != 0)
|
sl@0
|
388 |
{
|
sl@0
|
389 |
DBSC::CreateSecurityPolicyT1(aSid, aCapabilities, aSecurityPolicy);
|
sl@0
|
390 |
}
|
sl@0
|
391 |
else
|
sl@0
|
392 |
{
|
sl@0
|
393 |
DBSC::CreateSecurityPolicyT2(aVid, aCapabilities, aSecurityPolicy);
|
sl@0
|
394 |
}
|
sl@0
|
395 |
}
|
sl@0
|
396 |
else if(cababilityCount > KMaxCapabilityCount2 || cababilityCount == 0)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
__LEAVE(KErrCorrupt);
|
sl@0
|
399 |
}
|
sl@0
|
400 |
else
|
sl@0
|
401 |
{
|
sl@0
|
402 |
DBSC::CreateSecurityPolicyT3(aCapabilities, aSecurityPolicy);
|
sl@0
|
403 |
}
|
sl@0
|
404 |
}
|
sl@0
|
405 |
|
sl@0
|
406 |
/**
|
sl@0
|
407 |
*/
|
sl@0
|
408 |
inline CPDTextLoader::CPDTextLoader()
|
sl@0
|
409 |
{
|
sl@0
|
410 |
}
|
sl@0
|
411 |
|
sl@0
|
412 |
/**
|
sl@0
|
413 |
Standard phase-one factory method for CPDTextLoader instance.
|
sl@0
|
414 |
CPDTextLoader instance will be used for loading a set of security policies information
|
sl@0
|
415 |
from a text file, creating the related security policy objects and adding them to
|
sl@0
|
416 |
a CPolicyDomain collection.
|
sl@0
|
417 |
@param aFs File server session
|
sl@0
|
418 |
@param aTextFileName Full text file path, which will be used as an input.
|
sl@0
|
419 |
@return A pointer to just created CPDTextLoader instance.
|
sl@0
|
420 |
@leave System-wide error codes, including KErrNoMemory.
|
sl@0
|
421 |
*/
|
sl@0
|
422 |
CPDTextLoader* CPDTextLoader::NewLC(RFs& aFs, const TDesC& aTextFileName)
|
sl@0
|
423 |
{
|
sl@0
|
424 |
CPDTextLoader* self = new (ELeave) CPDTextLoader;
|
sl@0
|
425 |
CleanupStack::PushL(self);
|
sl@0
|
426 |
self->ConstructL(aFs, aTextFileName);
|
sl@0
|
427 |
return self;
|
sl@0
|
428 |
}
|
sl@0
|
429 |
|
sl@0
|
430 |
/**
|
sl@0
|
431 |
*/
|
sl@0
|
432 |
CPDTextLoader::~CPDTextLoader()
|
sl@0
|
433 |
{
|
sl@0
|
434 |
iRdStream.Close();
|
sl@0
|
435 |
}
|
sl@0
|
436 |
|
sl@0
|
437 |
/**
|
sl@0
|
438 |
Standard phase-two construction method for CPDTextLoader instance.
|
sl@0
|
439 |
@param aFs File server session
|
sl@0
|
440 |
@param aTextFileName Full text file path, which will be used as an input.
|
sl@0
|
441 |
*/
|
sl@0
|
442 |
void CPDTextLoader::ConstructL(RFs& aFs, const TDesC& aTextFileName)
|
sl@0
|
443 |
{
|
sl@0
|
444 |
__LEAVE_IF_ERROR(iRdStream.Open(aFs, aTextFileName, EFileRead | EFileStreamText));
|
sl@0
|
445 |
}
|
sl@0
|
446 |
|
sl@0
|
447 |
/**
|
sl@0
|
448 |
MPolicyDomainLoader::RunL() implementation, which is used to load security policies
|
sl@0
|
449 |
from a text file, create the related security policy objects and add them
|
sl@0
|
450 |
to CPolicyDomain instance, controlled by aPolicyDomainBuilder object.
|
sl@0
|
451 |
It is not called directly, but will be called back.
|
sl@0
|
452 |
@param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to add
|
sl@0
|
453 |
created security policy objects to the controlled by it collection.
|
sl@0
|
454 |
@leave System-wide error codes
|
sl@0
|
455 |
*/
|
sl@0
|
456 |
void CPDTextLoader::RunL(TPolicyDomainBuilder& aPolicyDomainBuilder)
|
sl@0
|
457 |
{
|
sl@0
|
458 |
TStmtProps stmtProps;
|
sl@0
|
459 |
const CDbPolicy* dbPolicy = LoadDbPolicyL(aPolicyDomainBuilder, stmtProps);
|
sl@0
|
460 |
__ASSERT(dbPolicy);
|
sl@0
|
461 |
LoadTblPoliciesL(aPolicyDomainBuilder, stmtProps, dbPolicy);
|
sl@0
|
462 |
LoadBackupSIDL(aPolicyDomainBuilder, stmtProps);
|
sl@0
|
463 |
}
|
sl@0
|
464 |
|
sl@0
|
465 |
/**
|
sl@0
|
466 |
The method returns ETrue if this is the end of file.
|
sl@0
|
467 |
@return ETrue - EOF, EFalse otherwise
|
sl@0
|
468 |
*/
|
sl@0
|
469 |
TBool CPDTextLoader::IsEofL()
|
sl@0
|
470 |
{
|
sl@0
|
471 |
return iRdStream.Source()->TellL(MStreamBuf::ERead) >= iRdStream.Source()->SizeL();
|
sl@0
|
472 |
}
|
sl@0
|
473 |
|
sl@0
|
474 |
/**
|
sl@0
|
475 |
The method parses a line from the text file, detects its type and gets the right side
|
sl@0
|
476 |
of "=" as a text line data descriptor. The information will be stored in aStmtProps
|
sl@0
|
477 |
parameter. If the text line is not recognizable, the method leaves with KErrCorrupt.
|
sl@0
|
478 |
Recognizable text line formats are:
|
sl@0
|
479 |
<[keyword]>
|
sl@0
|
480 |
<keyword>
|
sl@0
|
481 |
<keyword>=<value>
|
sl@0
|
482 |
<;>[comments]
|
sl@0
|
483 |
<blank line>
|
sl@0
|
484 |
@param aStmt Current text line
|
sl@0
|
485 |
@param aStmtProps The collected information will be stored there. Output parameter.
|
sl@0
|
486 |
@leave KErrCorrupt - the text line has unknown format
|
sl@0
|
487 |
*/
|
sl@0
|
488 |
void CPDTextLoader::GetStmtPropsL(const TDesC& aStmt, TStmtProps& aStmtProps) const
|
sl@0
|
489 |
{
|
sl@0
|
490 |
aStmtProps.iValue.Set(aStmt);
|
sl@0
|
491 |
if(aStmt.Length() == 0)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
aStmtProps.iType = EStmtTBlank;
|
sl@0
|
494 |
return;
|
sl@0
|
495 |
}
|
sl@0
|
496 |
else if(aStmt[0] == ';')
|
sl@0
|
497 |
{
|
sl@0
|
498 |
aStmtProps.iType = EStmtTComment;
|
sl@0
|
499 |
return;
|
sl@0
|
500 |
}
|
sl@0
|
501 |
TBool res = TryGetStmt1Props(aStmt, aStmtProps);
|
sl@0
|
502 |
if(!res)
|
sl@0
|
503 |
{
|
sl@0
|
504 |
res = TryGetStmt2Props(aStmt, aStmtProps);
|
sl@0
|
505 |
}
|
sl@0
|
506 |
if(!res)
|
sl@0
|
507 |
{
|
sl@0
|
508 |
__LEAVE(KErrCorrupt);
|
sl@0
|
509 |
}
|
sl@0
|
510 |
}
|
sl@0
|
511 |
|
sl@0
|
512 |
/**
|
sl@0
|
513 |
Tries to process a text line as a:
|
sl@0
|
514 |
<keyword>
|
sl@0
|
515 |
or
|
sl@0
|
516 |
<[keyword]>
|
sl@0
|
517 |
@param aStmt Current text line
|
sl@0
|
518 |
@param aStmtProps Output parameter
|
sl@0
|
519 |
@return ETrue, if it is recognizable text line. Then the method will set the text line type
|
sl@0
|
520 |
in aStmtProps.iType data member.
|
sl@0
|
521 |
EFalse This is not recognizable text line with <keyword> or <[keyword]> format.
|
sl@0
|
522 |
*/
|
sl@0
|
523 |
TBool CPDTextLoader::TryGetStmt1Props(const TDesC& aStmt, TStmtProps& aStmtProps) const
|
sl@0
|
524 |
{
|
sl@0
|
525 |
aStmtProps.iType = DBSC::StmtKeywordT1ToId(aStmt);
|
sl@0
|
526 |
return aStmtProps.iType != EStmtTInvalid;
|
sl@0
|
527 |
}
|
sl@0
|
528 |
|
sl@0
|
529 |
/**
|
sl@0
|
530 |
Tries to process a text line as a:
|
sl@0
|
531 |
<keyword>=<value>
|
sl@0
|
532 |
@param aStmt Current text line
|
sl@0
|
533 |
@param aStmtProps Output parameter
|
sl@0
|
534 |
@return ETrue, if it is recognizable text line. Then the method will set the text line type
|
sl@0
|
535 |
in aStmtProps.iType data member and the line value in aStmtProps.iValue
|
sl@0
|
536 |
data member. The text will be converted to a upper case.
|
sl@0
|
537 |
EFalse This is not recognizable text line with <keyword>=<value> format.
|
sl@0
|
538 |
*/
|
sl@0
|
539 |
TBool CPDTextLoader::TryGetStmt2Props(const TDesC& aStmt, TStmtProps& aStmtProps) const
|
sl@0
|
540 |
{
|
sl@0
|
541 |
TInt eqPos = aStmt.Find(KEqStr);
|
sl@0
|
542 |
if(eqPos != KErrNotFound && eqPos < (aStmt.Length() - 1))
|
sl@0
|
543 |
{
|
sl@0
|
544 |
TPtr stmtKeyword(const_cast <TText*> (aStmt.Left(eqPos).Ptr()), eqPos, eqPos);
|
sl@0
|
545 |
DBSC::Trim(stmtKeyword);
|
sl@0
|
546 |
aStmtProps.iType = DBSC::StmtKeywordT2ToId(stmtKeyword);
|
sl@0
|
547 |
if(aStmtProps.iType != EStmtTInvalid)
|
sl@0
|
548 |
{
|
sl@0
|
549 |
TInt valPos = eqPos + 1;
|
sl@0
|
550 |
TInt valLen = aStmt.Length() - valPos;
|
sl@0
|
551 |
TPtr value(const_cast <TText*> (aStmt.Mid(valPos).Ptr()), valLen, valLen);
|
sl@0
|
552 |
DBSC::Trim(value);
|
sl@0
|
553 |
aStmtProps.iValue.Set(value);
|
sl@0
|
554 |
return ETrue;
|
sl@0
|
555 |
}
|
sl@0
|
556 |
}
|
sl@0
|
557 |
return EFalse;
|
sl@0
|
558 |
}
|
sl@0
|
559 |
|
sl@0
|
560 |
/**
|
sl@0
|
561 |
The method loads a single text line from the file in the place, pointed by aStmt parameter.
|
sl@0
|
562 |
@param aStmt The place, where the text line data will be stored
|
sl@0
|
563 |
@return ETrue This not the end of file, the information in aStmt is valid.
|
sl@0
|
564 |
EFalse End of file.
|
sl@0
|
565 |
@leave System-wide error codes, including KErrCorrupt - unknown file format.
|
sl@0
|
566 |
*/
|
sl@0
|
567 |
TBool CPDTextLoader::LoadStmtL(TPtr& aStmt)
|
sl@0
|
568 |
{
|
sl@0
|
569 |
if(IsEofL())
|
sl@0
|
570 |
{
|
sl@0
|
571 |
return EFalse;
|
sl@0
|
572 |
}
|
sl@0
|
573 |
TChar char_LF('\n');
|
sl@0
|
574 |
iStmt8.Zero();
|
sl@0
|
575 |
iRdStream.ReadL(iStmt8, char_LF);
|
sl@0
|
576 |
aStmt.Copy(iStmt8);
|
sl@0
|
577 |
const TInt len = aStmt.Length();
|
sl@0
|
578 |
if(len < 2)
|
sl@0
|
579 |
{//Unknown text file format. The text line should have at the end CR-LF pair.
|
sl@0
|
580 |
__LEAVE(KErrCorrupt);
|
sl@0
|
581 |
}
|
sl@0
|
582 |
if(TChar(aStmt[len - 1]) != char_LF)
|
sl@0
|
583 |
{//Too long line
|
sl@0
|
584 |
__LEAVE(KErrCorrupt);
|
sl@0
|
585 |
}
|
sl@0
|
586 |
aStmt.SetLength(len - 1);
|
sl@0
|
587 |
//The last character is (CR). Check for (LF).
|
sl@0
|
588 |
TChar char_CR('\r');
|
sl@0
|
589 |
if(TChar(aStmt[len - 2]) == char_CR)
|
sl@0
|
590 |
{
|
sl@0
|
591 |
aStmt.SetLength(len - 2);
|
sl@0
|
592 |
}
|
sl@0
|
593 |
DBSC::Trim(aStmt);
|
sl@0
|
594 |
return ETrue;
|
sl@0
|
595 |
}
|
sl@0
|
596 |
|
sl@0
|
597 |
/**
|
sl@0
|
598 |
The method loads a single text line from the file in the place, pointed by iStmt data member
|
sl@0
|
599 |
skipping lines with comments and blank lines.
|
sl@0
|
600 |
@param aStmtProps Output parameter. It will be initialized after the call.
|
sl@0
|
601 |
@return Statement class.
|
sl@0
|
602 |
@leave System-wide error codes, including KErrCorrupt - unknown file format.
|
sl@0
|
603 |
*/
|
sl@0
|
604 |
TStmtClass CPDTextLoader::LoadNextStmtL(TStmtProps& aStmtProps)
|
sl@0
|
605 |
{
|
sl@0
|
606 |
TPtr stmt(const_cast <TText*> (iStmt.Ptr()), 0, iStmt.MaxLength());
|
sl@0
|
607 |
TStmtClass stmtClass = EStmtCInvalid;
|
sl@0
|
608 |
do
|
sl@0
|
609 |
{
|
sl@0
|
610 |
if(!LoadStmtL(stmt))
|
sl@0
|
611 |
{
|
sl@0
|
612 |
aStmtProps.iType = EStmtTEof;
|
sl@0
|
613 |
break;
|
sl@0
|
614 |
}
|
sl@0
|
615 |
GetStmtPropsL(stmt, aStmtProps);
|
sl@0
|
616 |
}
|
sl@0
|
617 |
while((stmtClass = DBSC::StmtType2Class(aStmtProps.iType)) == EStmtCNoData);
|
sl@0
|
618 |
return stmtClass;
|
sl@0
|
619 |
}
|
sl@0
|
620 |
|
sl@0
|
621 |
/**
|
sl@0
|
622 |
The method loads a single text line from the file in the place, pointed by iStmt data member
|
sl@0
|
623 |
skipping lines with comments and blank lines. The loaded text line type is expected to be
|
sl@0
|
624 |
aStmtType.
|
sl@0
|
625 |
@param aStmtProps Output parameter. It will be initialized after the call.
|
sl@0
|
626 |
@param aStmtType Expected type of the loaded text line.
|
sl@0
|
627 |
@leave System-wide error codes, including KErrCorrupt - unknown file format or the loaded line type is
|
sl@0
|
628 |
not the expected type.
|
sl@0
|
629 |
*/
|
sl@0
|
630 |
void CPDTextLoader::LoadNextStmtOfTypeL(TStmtProps& aStmtProps, TStmtType aStmtType)
|
sl@0
|
631 |
{
|
sl@0
|
632 |
(void)LoadNextStmtL(aStmtProps);
|
sl@0
|
633 |
if(aStmtProps.iType != aStmtType)
|
sl@0
|
634 |
{
|
sl@0
|
635 |
__LEAVE(KErrCorrupt);
|
sl@0
|
636 |
}
|
sl@0
|
637 |
}
|
sl@0
|
638 |
|
sl@0
|
639 |
/**
|
sl@0
|
640 |
The method loads all database policy related data from the text file.
|
sl@0
|
641 |
@param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to add
|
sl@0
|
642 |
created database security policy object to the controlled by it policy collection.
|
sl@0
|
643 |
@param aStmtProps The information about the last loaded text line.
|
sl@0
|
644 |
@return A const pointer to just created database policy object from loaded text data.
|
sl@0
|
645 |
@leave System-wide error codes.
|
sl@0
|
646 |
*/
|
sl@0
|
647 |
const CDbPolicy* CPDTextLoader::LoadDbPolicyL(TPolicyDomainBuilder& aPolicyDomainBuilder,
|
sl@0
|
648 |
TStmtProps& aStmtProps)
|
sl@0
|
649 |
{
|
sl@0
|
650 |
LoadNextStmtOfTypeL(aStmtProps, EStmtTDatabase);
|
sl@0
|
651 |
|
sl@0
|
652 |
CPolicyBase::RPolicyCollection policyColl;
|
sl@0
|
653 |
CleanupClosePushL(policyColl);
|
sl@0
|
654 |
|
sl@0
|
655 |
LoadSecurityPoliciesL(policyColl, aStmtProps);
|
sl@0
|
656 |
|
sl@0
|
657 |
CDbPolicy* dbPolicy = CDbPolicy::NewLC(policyColl);
|
sl@0
|
658 |
aPolicyDomainBuilder.SetDbPolicyL(dbPolicy);
|
sl@0
|
659 |
CleanupStack::Pop(dbPolicy);
|
sl@0
|
660 |
|
sl@0
|
661 |
CleanupStack::PopAndDestroy(&policyColl);
|
sl@0
|
662 |
return dbPolicy;
|
sl@0
|
663 |
}
|
sl@0
|
664 |
|
sl@0
|
665 |
/**
|
sl@0
|
666 |
The method loads all table policy related data from the text file.
|
sl@0
|
667 |
@param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to add
|
sl@0
|
668 |
created table security policy objects to the controlled by it policy collection.
|
sl@0
|
669 |
@param aStmtProps The information about the last loaded text line.
|
sl@0
|
670 |
@param aDbPolicy A const pointer to the database policy object, created previously from loaded text data.
|
sl@0
|
671 |
@leave System-wide error codes.
|
sl@0
|
672 |
*/
|
sl@0
|
673 |
void CPDTextLoader::LoadTblPoliciesL(TPolicyDomainBuilder& aPolicyDomainBuilder,
|
sl@0
|
674 |
TStmtProps& aStmtProps, const CDbPolicy* aDbPolicy)
|
sl@0
|
675 |
{
|
sl@0
|
676 |
__ASSERT(aDbPolicy);
|
sl@0
|
677 |
CPolicyBase::RPolicyCollection policyColl;
|
sl@0
|
678 |
CleanupClosePushL(policyColl);
|
sl@0
|
679 |
while(aStmtProps.iType == EStmtTTable)
|
sl@0
|
680 |
{
|
sl@0
|
681 |
LoadNextStmtOfTypeL(aStmtProps, EStmtTName);
|
sl@0
|
682 |
TBufC<KMaxFileName> tableName;
|
sl@0
|
683 |
tableName = aStmtProps.iValue;
|
sl@0
|
684 |
|
sl@0
|
685 |
LoadSecurityPoliciesL(policyColl, aStmtProps);
|
sl@0
|
686 |
|
sl@0
|
687 |
CTblPolicy* tblPolicy = CTblPolicy::NewLC(tableName, policyColl, aDbPolicy);
|
sl@0
|
688 |
aPolicyDomainBuilder.AddTblPolicyL(tblPolicy);
|
sl@0
|
689 |
CleanupStack::Pop(tblPolicy);
|
sl@0
|
690 |
}
|
sl@0
|
691 |
CleanupStack::PopAndDestroy(&policyColl);
|
sl@0
|
692 |
}
|
sl@0
|
693 |
|
sl@0
|
694 |
/**
|
sl@0
|
695 |
The method loads the backup & restore SID, if it is in the file.
|
sl@0
|
696 |
@param aPolicyDomainBuilder TPolicyDomainBuilder instance, which will be used to store
|
sl@0
|
697 |
loaded backup & restore SID.
|
sl@0
|
698 |
@param aStmtProps The information about the last loaded text line.
|
sl@0
|
699 |
@leave System-wide error codes.
|
sl@0
|
700 |
*/
|
sl@0
|
701 |
void CPDTextLoader::LoadBackupSIDL(TPolicyDomainBuilder& aPolicyDomainBuilder,
|
sl@0
|
702 |
TStmtProps& aStmtProps)
|
sl@0
|
703 |
{
|
sl@0
|
704 |
TSecureId backupSID((TUint32)ECapability_None);//ECapability_None is used in TSecurityPolicy constructors too.
|
sl@0
|
705 |
if(aStmtProps.iType == EStmtTBackup)
|
sl@0
|
706 |
{
|
sl@0
|
707 |
LoadNextStmtOfTypeL(aStmtProps, EStmtTSID);
|
sl@0
|
708 |
backupSID = GetIdL(aStmtProps.iValue);
|
sl@0
|
709 |
}
|
sl@0
|
710 |
else if(aStmtProps.iType != EStmtTEof)
|
sl@0
|
711 |
{
|
sl@0
|
712 |
__LEAVE(KErrCorrupt);
|
sl@0
|
713 |
}
|
sl@0
|
714 |
aPolicyDomainBuilder.SetBackupSID(backupSID);
|
sl@0
|
715 |
}
|
sl@0
|
716 |
|
sl@0
|
717 |
/**
|
sl@0
|
718 |
The method loads all database/table related security policy information from the text file.
|
sl@0
|
719 |
@param aPolicyColl Output parameter - an array, which elements type is CPolicyBase::RPolicyCollection.
|
sl@0
|
720 |
The collected from the text file security policy information wil be stored there.
|
sl@0
|
721 |
@param aStmtProps The information about the last loaded text line.
|
sl@0
|
722 |
@leave System-wide error codes.
|
sl@0
|
723 |
*/
|
sl@0
|
724 |
void CPDTextLoader::LoadSecurityPoliciesL(CPolicyBase::RPolicyCollection& aPolicyColl,
|
sl@0
|
725 |
TStmtProps& aStmtProps)
|
sl@0
|
726 |
{
|
sl@0
|
727 |
aPolicyColl.Reset();
|
sl@0
|
728 |
(void)LoadNextStmtL(aStmtProps);
|
sl@0
|
729 |
while(DBSC::StmtType2Class(aStmtProps.iType) == EStmtCPolicyType)
|
sl@0
|
730 |
{
|
sl@0
|
731 |
CPolicyBase::TPolicy policy;
|
sl@0
|
732 |
policy.iType = DBSC::StmtType2PolicyType(aStmtProps.iType);
|
sl@0
|
733 |
__ASSERT(policy.iType != EPTNone);
|
sl@0
|
734 |
LoadSecurityPolicyL(policy.iData, aStmtProps);
|
sl@0
|
735 |
__LEAVE_IF_ERROR(aPolicyColl.Append(policy));
|
sl@0
|
736 |
}
|
sl@0
|
737 |
if(aPolicyColl.Count() == 0)
|
sl@0
|
738 |
{
|
sl@0
|
739 |
__LEAVE(KErrCorrupt);
|
sl@0
|
740 |
}
|
sl@0
|
741 |
}
|
sl@0
|
742 |
|
sl@0
|
743 |
/**
|
sl@0
|
744 |
The method loads a single security policy from the text file.
|
sl@0
|
745 |
@param aSecurityPolicy Output parameter - the information from the file will be stored there.
|
sl@0
|
746 |
The collected from the text file security policy information wil be stored there.
|
sl@0
|
747 |
@param aStmtProps The information about the last loaded text line.
|
sl@0
|
748 |
@leave System-wide error codes.
|
sl@0
|
749 |
*/
|
sl@0
|
750 |
void CPDTextLoader::LoadSecurityPolicyL(TSecurityPolicy& aSecurityPolicy,
|
sl@0
|
751 |
TStmtProps& aStmtProps)
|
sl@0
|
752 |
{
|
sl@0
|
753 |
TSecureId sid(0);
|
sl@0
|
754 |
TVendorId vid(0);
|
sl@0
|
755 |
RArray<TCapability> capabilities;
|
sl@0
|
756 |
CleanupClosePushL(capabilities);
|
sl@0
|
757 |
while(LoadNextStmtL(aStmtProps) == EStmtCPolicyItem)
|
sl@0
|
758 |
{
|
sl@0
|
759 |
if(aStmtProps.iType == EStmtTCapability)
|
sl@0
|
760 |
{
|
sl@0
|
761 |
GetCapabilitiesL(aStmtProps.iValue, capabilities);
|
sl@0
|
762 |
}
|
sl@0
|
763 |
else if(aStmtProps.iType == EStmtTSID)
|
sl@0
|
764 |
{
|
sl@0
|
765 |
if(sid != 0)
|
sl@0
|
766 |
{//duplicated SID text line
|
sl@0
|
767 |
__LEAVE(KErrCorrupt);
|
sl@0
|
768 |
}
|
sl@0
|
769 |
sid = GetIdL(aStmtProps.iValue);
|
sl@0
|
770 |
}
|
sl@0
|
771 |
else if(aStmtProps.iType == EStmtTVID)
|
sl@0
|
772 |
{
|
sl@0
|
773 |
if(vid != 0)
|
sl@0
|
774 |
{//duplicated VID text line
|
sl@0
|
775 |
__LEAVE(KErrCorrupt);
|
sl@0
|
776 |
}
|
sl@0
|
777 |
vid = GetIdL(aStmtProps.iValue);
|
sl@0
|
778 |
}
|
sl@0
|
779 |
else
|
sl@0
|
780 |
{
|
sl@0
|
781 |
__ASSERT(0);
|
sl@0
|
782 |
}
|
sl@0
|
783 |
}
|
sl@0
|
784 |
if(capabilities.Count() == 0 && sid == 0 && vid == 0)
|
sl@0
|
785 |
{//invalid security policy data
|
sl@0
|
786 |
__LEAVE(KErrCorrupt);
|
sl@0
|
787 |
}
|
sl@0
|
788 |
DBSC::CreateSecurityPolicyL(sid, vid, capabilities, aSecurityPolicy);
|
sl@0
|
789 |
CleanupStack::PopAndDestroy(&capabilities);
|
sl@0
|
790 |
}
|
sl@0
|
791 |
|
sl@0
|
792 |
/**
|
sl@0
|
793 |
The method parses a string with capabilities information and puts found capabilities in aCapability
|
sl@0
|
794 |
output parameter.
|
sl@0
|
795 |
@param aCapabilityStr Capabilities string.
|
sl@0
|
796 |
@param aCapabilities The collected capabilities will be stored there.
|
sl@0
|
797 |
@leave System-wide error codes. KErrCorrupt, if aCapability is not 0, which means there are
|
sl@0
|
798 |
2 or more capability strings for the same policy.
|
sl@0
|
799 |
*/
|
sl@0
|
800 |
void CPDTextLoader::GetCapabilitiesL(const TDesC& aCapabilityStr,
|
sl@0
|
801 |
RArray<TCapability>& aCapabilities) const
|
sl@0
|
802 |
{
|
sl@0
|
803 |
if(aCapabilities.Count() > 0)
|
sl@0
|
804 |
{//No more than one "capability" statement in the text file!
|
sl@0
|
805 |
__LEAVE(KErrCorrupt);
|
sl@0
|
806 |
}
|
sl@0
|
807 |
TLinearOrder<TCapability> linearOrder(&DBSC::CompareCapabilities);
|
sl@0
|
808 |
TLex lex(aCapabilityStr);
|
sl@0
|
809 |
for(TPtrC token=lex.NextToken();token.Length()!=0;token.Set(lex.NextToken()))
|
sl@0
|
810 |
{
|
sl@0
|
811 |
TCapability cap = DBSC::CapabilityName2Id(token);
|
sl@0
|
812 |
if(cap != ECapability_Limit)
|
sl@0
|
813 |
{//InsertInOrder() - to warn the user in case of duplicates
|
sl@0
|
814 |
__LEAVE_IF_ERROR(aCapabilities.InsertInOrder(cap, linearOrder));
|
sl@0
|
815 |
}
|
sl@0
|
816 |
else
|
sl@0
|
817 |
{
|
sl@0
|
818 |
__LEAVE(KErrGeneral);//Unknown capability
|
sl@0
|
819 |
}
|
sl@0
|
820 |
}
|
sl@0
|
821 |
}
|
sl@0
|
822 |
|
sl@0
|
823 |
/**
|
sl@0
|
824 |
@param aStr A string with SID or VID.
|
sl@0
|
825 |
@return The UID, extracted from the string
|
sl@0
|
826 |
@leave System-wide error codes.
|
sl@0
|
827 |
*/
|
sl@0
|
828 |
TUint CPDTextLoader::GetIdL(const TDesC& aStr) const
|
sl@0
|
829 |
{
|
sl@0
|
830 |
TLex lex(aStr);
|
sl@0
|
831 |
TUint id;
|
sl@0
|
832 |
__LEAVE_IF_ERROR(lex.Val(id, EHex));
|
sl@0
|
833 |
if(id == 0)
|
sl@0
|
834 |
{
|
sl@0
|
835 |
__LEAVE(KErrCorrupt);
|
sl@0
|
836 |
}
|
sl@0
|
837 |
return id;
|
sl@0
|
838 |
}
|
sl@0
|
839 |
|
sl@0
|
840 |
} //end of - namespace DBSC
|