sl@0
|
1 |
// Copyright (c) 1997-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "DATASTOR.H"
|
sl@0
|
17 |
#include "APMPAN.H"
|
sl@0
|
18 |
|
sl@0
|
19 |
const TUid KOpenServiceUid = { 0x10208DCA };
|
sl@0
|
20 |
|
sl@0
|
21 |
const TInt KAppMappingGranularity=1;
|
sl@0
|
22 |
//
|
sl@0
|
23 |
// class TMappingDataTypeToApp
|
sl@0
|
24 |
//
|
sl@0
|
25 |
|
sl@0
|
26 |
EXPORT_C TMappingDataTypeToApp::TMappingDataTypeToApp()
|
sl@0
|
27 |
:iDataType(TDataType(_L8(""))), iServiceUid(KOpenServiceUid)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
iAppUid.iUid=0;
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
EXPORT_C TMappingDataTypeToApp::TMappingDataTypeToApp(const TDataType& aDataType,
|
sl@0
|
33 |
TDataTypePriority aPriority, TUid aAppUid)
|
sl@0
|
34 |
:iDataType(aDataType),
|
sl@0
|
35 |
iPriority(aPriority),
|
sl@0
|
36 |
iAppUid(aAppUid),
|
sl@0
|
37 |
iServiceUid(KOpenServiceUid)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
EXPORT_C TMappingDataTypeToApp::TMappingDataTypeToApp(const TDataType& aDataType,
|
sl@0
|
42 |
TDataTypePriority aPriority, TUid aAppUid, TUid aServiceUid)
|
sl@0
|
43 |
:iDataType(aDataType),
|
sl@0
|
44 |
iPriority(aPriority),
|
sl@0
|
45 |
iAppUid(aAppUid),
|
sl@0
|
46 |
iServiceUid(aServiceUid)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
EXPORT_C void TMappingDataTypeToApp::InternalizeL(RReadStream& aStream)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
aStream >> iDataType;
|
sl@0
|
53 |
iPriority=aStream.ReadInt32L();
|
sl@0
|
54 |
iAppUid.iUid=aStream.ReadInt32L();
|
sl@0
|
55 |
iServiceUid.iUid=aStream.ReadInt32L();
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
EXPORT_C void TMappingDataTypeToApp::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
59 |
{
|
sl@0
|
60 |
aStream << iDataType;
|
sl@0
|
61 |
aStream.WriteInt32L(iPriority);
|
sl@0
|
62 |
aStream.WriteInt32L(iAppUid.iUid);
|
sl@0
|
63 |
aStream.WriteInt32L(iServiceUid.iUid);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
//
|
sl@0
|
68 |
// class CTypeStoreManager
|
sl@0
|
69 |
//
|
sl@0
|
70 |
|
sl@0
|
71 |
EXPORT_C void CTypeStoreManager::InternalizeL(RReadStream& aStream)
|
sl@0
|
72 |
/** Internalises the array of data type mappings from a read stream.
|
sl@0
|
73 |
|
sl@0
|
74 |
@param aStream Stream from which the data type mappings are internalised. */
|
sl@0
|
75 |
{
|
sl@0
|
76 |
aStream >> iAppMappings;
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
EXPORT_C void CTypeStoreManager::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
80 |
/** Externalises the data type mappings to a write stream.
|
sl@0
|
81 |
|
sl@0
|
82 |
@param aStream Stream to which the data type mappings should be externalised. */
|
sl@0
|
83 |
{
|
sl@0
|
84 |
aStream << iAppMappings;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
EXPORT_C CTypeStoreManager* CTypeStoreManager::NewL(RFs& aFs)
|
sl@0
|
88 |
/** Constructs a CTypeStoreManager object.
|
sl@0
|
89 |
|
sl@0
|
90 |
@param aFs A session with the file server.
|
sl@0
|
91 |
@return The newly created CTypeStoreManager object. */
|
sl@0
|
92 |
{
|
sl@0
|
93 |
CTypeStoreManager* self = new(ELeave) CTypeStoreManager(aFs);
|
sl@0
|
94 |
CleanupStack::PushL(self);
|
sl@0
|
95 |
self->ConstructL();
|
sl@0
|
96 |
CleanupStack::Pop(self);
|
sl@0
|
97 |
return (self);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
void CTypeStoreManager::ConstructL()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
TChar sysDrive = RFs::GetSystemDriveChar();
|
sl@0
|
103 |
TInt maxSizeOfFileName = KIniFileName().Length() + 1;
|
sl@0
|
104 |
iIniFileName.CreateL(maxSizeOfFileName);
|
sl@0
|
105 |
iIniFileName.Append(sysDrive);
|
sl@0
|
106 |
iIniFileName.Append(KIniFileName());
|
sl@0
|
107 |
}
|
sl@0
|
108 |
CTypeStoreManager::CTypeStoreManager(RFs& aFs)
|
sl@0
|
109 |
: iAppMappings(KAppMappingGranularity),
|
sl@0
|
110 |
iFs(aFs)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
__ASSERT_ALWAYS(RProcess().SecureId()==0x10003a3f, Panic(EPanicNotBeingUsedFromWithinApparcServerProcess));
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
EXPORT_C CTypeStoreManager::~CTypeStoreManager()
|
sl@0
|
116 |
/** Destructor. */
|
sl@0
|
117 |
{
|
sl@0
|
118 |
iIniFileName.Close();
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
EXPORT_C void CTypeStoreManager::StoreL()
|
sl@0
|
122 |
/** Stores the data type mappings to the data store ini file
|
sl@0
|
123 |
(c:\\System\\Data\\Dtstor.ini), creating a new ini file if it does
|
sl@0
|
124 |
not already exist. */
|
sl@0
|
125 |
{
|
sl@0
|
126 |
CDictionaryStore* iniFile=OpenIniFileLC();
|
sl@0
|
127 |
iniFile->RemoveL(KUidDatastorSettings);
|
sl@0
|
128 |
RDictionaryWriteStream outStream;
|
sl@0
|
129 |
outStream.AssignLC(*iniFile,KUidDatastorSettings);
|
sl@0
|
130 |
outStream << *this;
|
sl@0
|
131 |
outStream.CommitL();
|
sl@0
|
132 |
CleanupStack::PopAndDestroy();
|
sl@0
|
133 |
iniFile->CommitL();
|
sl@0
|
134 |
CleanupStack::PopAndDestroy(); // inifile
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
EXPORT_C void CTypeStoreManager::RestoreL()
|
sl@0
|
138 |
/** Restores the data type mappings from the data store ini file. */
|
sl@0
|
139 |
{
|
sl@0
|
140 |
CDictionaryStore* iniFile=OpenIniFileLC();
|
sl@0
|
141 |
RDictionaryReadStream inStream;
|
sl@0
|
142 |
inStream.OpenLC(*iniFile,KUidDatastorSettings);
|
sl@0
|
143 |
inStream >> *this;
|
sl@0
|
144 |
CleanupStack::PopAndDestroy(2); // inStream * iniFile
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
/** Changes an existing data type mapping, or adds a new one.
|
sl@0
|
148 |
|
sl@0
|
149 |
If the data type does not exist in the store, the new mapping is appended.
|
sl@0
|
150 |
If the data type does exist, its mapping is replaced.
|
sl@0
|
151 |
|
sl@0
|
152 |
The service is considered to be the KOpenServiceUid service.
|
sl@0
|
153 |
|
sl@0
|
154 |
@param aDataType A new or existing data type.
|
sl@0
|
155 |
@param aPriority The priority with which the application handles the data type.
|
sl@0
|
156 |
@param aUid The UID of the application to associate with the data type.
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
EXPORT_C void CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
InsertDataMappingL(aDataType, aPriority, aUid, KOpenServiceUid);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
|
sl@0
|
163 |
/** Changes an existing data type mapping, or adds a new one.
|
sl@0
|
164 |
|
sl@0
|
165 |
If the data type does not exist in the store, the new mapping is appended.
|
sl@0
|
166 |
If the data type does exist, its mapping is replaced.
|
sl@0
|
167 |
|
sl@0
|
168 |
@param aDataType A new or existing data type.
|
sl@0
|
169 |
@param aPriority The priority with which the application handles the data type.
|
sl@0
|
170 |
@param aUid The UID of the application to associate with the data type.
|
sl@0
|
171 |
@param aServiceUid The UID of the service.
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
EXPORT_C void CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType,
|
sl@0
|
174 |
TDataTypePriority aPriority, TUid aUid, TUid aServiceUid)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
TInt i = FindDataMapping(aDataType, aServiceUid);
|
sl@0
|
177 |
if ( i == KErrNotFound )
|
sl@0
|
178 |
iAppMappings.AppendL( TMappingDataTypeToApp( aDataType, aPriority, aUid, aServiceUid ) );
|
sl@0
|
179 |
else
|
sl@0
|
180 |
{
|
sl@0
|
181 |
TMappingDataTypeToApp& mapping = iAppMappings[i];
|
sl@0
|
182 |
mapping.iDataType=aDataType;
|
sl@0
|
183 |
mapping.iPriority=aPriority;
|
sl@0
|
184 |
mapping.iAppUid=aUid;
|
sl@0
|
185 |
mapping.iServiceUid=aServiceUid;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
/** Changes an existing data type mapping, or adds a new one.
|
sl@0
|
190 |
If the data type does not exist in the store, or if it does and its existing priority
|
sl@0
|
191 |
is less than aPriority, the new mapping is added to the store, or replaces the existing one.
|
sl@0
|
192 |
Otherwise, no change is made.
|
sl@0
|
193 |
|
sl@0
|
194 |
The service is considered to be the KOpenServiceUid service.
|
sl@0
|
195 |
|
sl@0
|
196 |
@param aDataType A new or existing data type.
|
sl@0
|
197 |
@param aPriority The priority with which the application handles the data type.
|
sl@0
|
198 |
@param aUid The UID of the application to associate with the data type.
|
sl@0
|
199 |
@return ETrue if the new mapping was added or an existing mapping replaced, EFalse if no
|
sl@0
|
200 |
change was made.
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
EXPORT_C TBool CTypeStoreManager::InsertIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
return InsertIfHigherL(aDataType, aPriority, aUid, KOpenServiceUid);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
/** Changes an existing data type mapping, or adds a new one.
|
sl@0
|
208 |
If the data type does not exist in the store, or if it does and its existing priority
|
sl@0
|
209 |
is less than aPriority, the new mapping is added to the store, or replaces the existing one.
|
sl@0
|
210 |
Otherwise, no change is made.
|
sl@0
|
211 |
|
sl@0
|
212 |
@param aDataType A new or existing data type.
|
sl@0
|
213 |
@param aPriority The priority with which the application handles the data type.
|
sl@0
|
214 |
@param aUid The UID of the application to associate with the data type.
|
sl@0
|
215 |
@param aServiceUid The UID of the service.
|
sl@0
|
216 |
@return ETrue if the new mapping was added or an existing mapping replaced, EFalse if no
|
sl@0
|
217 |
change was made.
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
EXPORT_C TBool CTypeStoreManager::InsertIfHigherL(const TDataType& aDataType,
|
sl@0
|
220 |
TDataTypePriority aPriority, TUid aUid, TUid aServiceUid)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
TInt i = FindDataMapping( aDataType, aServiceUid );
|
sl@0
|
223 |
if ( i == KErrNotFound || iAppMappings[i].iPriority < aPriority )
|
sl@0
|
224 |
{
|
sl@0
|
225 |
InsertDataMappingL( aDataType, aPriority, aUid, aServiceUid );
|
sl@0
|
226 |
return ETrue;
|
sl@0
|
227 |
}
|
sl@0
|
228 |
else
|
sl@0
|
229 |
return EFalse;
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
/** Removes an existing data type mapping from the store.
|
sl@0
|
233 |
|
sl@0
|
234 |
The service is considered to be the KOpenServiceUid service.
|
sl@0
|
235 |
|
sl@0
|
236 |
@param aDataType Data type whose mapping should be removed.
|
sl@0
|
237 |
@panic USER 0 The specified data type cannot be found. Debug builds only.
|
sl@0
|
238 |
*/
|
sl@0
|
239 |
EXPORT_C void CTypeStoreManager::DeleteDataMapping(const TDataType& aDataType)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
DeleteDataMapping(aDataType, KOpenServiceUid);
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
/** Removes an existing data type mapping from the store.
|
sl@0
|
245 |
|
sl@0
|
246 |
@param aDataType Data type whose mapping should be removed.
|
sl@0
|
247 |
@param aServiceUid The UID of the service.
|
sl@0
|
248 |
@panic USER 0 The specified data type cannot be found. Debug builds only.
|
sl@0
|
249 |
*/
|
sl@0
|
250 |
EXPORT_C void CTypeStoreManager::DeleteDataMapping(const TDataType& aDataType,
|
sl@0
|
251 |
TUid aServiceUid)
|
sl@0
|
252 |
{
|
sl@0
|
253 |
TInt i=FindDataMapping(aDataType, aServiceUid);
|
sl@0
|
254 |
__ASSERT_DEBUG(i!=KErrNotFound,User::Invariant());
|
sl@0
|
255 |
iAppMappings.Delete(i);
|
sl@0
|
256 |
}
|
sl@0
|
257 |
|
sl@0
|
258 |
/** Gets the UID of the application mapped to the specified data type.
|
sl@0
|
259 |
|
sl@0
|
260 |
The service is considered to be the KOpenServiceUid service.
|
sl@0
|
261 |
|
sl@0
|
262 |
@param aDataType The data type.
|
sl@0
|
263 |
@param aUid On return, the UID of the application associated with the
|
sl@0
|
264 |
data type, or KNullUid if the data type is not found.
|
sl@0
|
265 |
*/
|
sl@0
|
266 |
EXPORT_C void CTypeStoreManager::GetAppByDataType(const TDataType& aDataType, TUid& aUid) const
|
sl@0
|
267 |
{
|
sl@0
|
268 |
GetAppByDataType(aDataType, KOpenServiceUid, aUid);
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
/** Gets the UID of the application mapped to the specified data type.
|
sl@0
|
272 |
|
sl@0
|
273 |
The service is considered to be the KOpenServiceUid service.
|
sl@0
|
274 |
|
sl@0
|
275 |
@param aDataType The data type.
|
sl@0
|
276 |
@param aServiceUid The UID of the service.
|
sl@0
|
277 |
@param aUid On return, the UID of the application associated with the
|
sl@0
|
278 |
data type, or KNullUid if the data type is not found.
|
sl@0
|
279 |
*/
|
sl@0
|
280 |
EXPORT_C void CTypeStoreManager::GetAppByDataType(const TDataType& aDataType,
|
sl@0
|
281 |
TUid aServiceUid, TUid& aUid) const
|
sl@0
|
282 |
{
|
sl@0
|
283 |
TInt i=FindDataMapping(aDataType, aServiceUid);
|
sl@0
|
284 |
aUid=(i==KErrNotFound? KNullUid : iAppMappings[i].iAppUid);
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
EXPORT_C void CTypeStoreManager::GetDataTypesByAppL(TUid aUid, CArrayFix<TDataType>* aTypeArray) const
|
sl@0
|
288 |
/** Populates an array with all the data types supported by the specified application.
|
sl@0
|
289 |
|
sl@0
|
290 |
If the specified UID is zero, the array is populated with all the data types found in
|
sl@0
|
291 |
the store.
|
sl@0
|
292 |
|
sl@0
|
293 |
@param aUid An application UID.
|
sl@0
|
294 |
@param aTypeArray An empty array. On return, contains all data types supported by the
|
sl@0
|
295 |
application.
|
sl@0
|
296 |
@panic APMIME 5 The array is NULL.
|
sl@0
|
297 |
@panic APMIME 6 The array passed to the function is not empty. Debug builds only. */
|
sl@0
|
298 |
{
|
sl@0
|
299 |
__ASSERT_ALWAYS(aTypeArray,Panic(EInvalidArgument));
|
sl@0
|
300 |
__ASSERT_DEBUG(!aTypeArray->Count(),Panic(EArrayNotEmpty));
|
sl@0
|
301 |
TInt count=iAppMappings.Count();
|
sl@0
|
302 |
for (TInt i=0; i<count; i++)
|
sl@0
|
303 |
{
|
sl@0
|
304 |
if ((iAppMappings[i].iAppUid==aUid || aUid.iUid==0) &&
|
sl@0
|
305 |
(iAppMappings[i].iServiceUid == KOpenServiceUid))
|
sl@0
|
306 |
{
|
sl@0
|
307 |
aTypeArray->AppendL(iAppMappings[i].iDataType);
|
sl@0
|
308 |
}
|
sl@0
|
309 |
}
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
EXPORT_C const CArrayFixFlat<TMappingDataTypeToApp>& CTypeStoreManager::MappingArray() const
|
sl@0
|
313 |
/** Returns the array of data type mappings.
|
sl@0
|
314 |
|
sl@0
|
315 |
@return The array of data type mappings. */
|
sl@0
|
316 |
{
|
sl@0
|
317 |
return iAppMappings;
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
TInt CTypeStoreManager::FindDataMapping(const TDataType& aDataType,
|
sl@0
|
321 |
const TUid& aServiceUid) const
|
sl@0
|
322 |
{
|
sl@0
|
323 |
TInt count=iAppMappings.Count();
|
sl@0
|
324 |
for (TInt i=0; i<count; i++)
|
sl@0
|
325 |
{
|
sl@0
|
326 |
// Match the pattern at the start of the mime type
|
sl@0
|
327 |
if ((iAppMappings[i].iDataType.Des8().Match(aDataType.Des8())==0) &&
|
sl@0
|
328 |
(iAppMappings[i].iServiceUid == aServiceUid))
|
sl@0
|
329 |
{
|
sl@0
|
330 |
return i;
|
sl@0
|
331 |
}
|
sl@0
|
332 |
}
|
sl@0
|
333 |
return KErrNotFound;
|
sl@0
|
334 |
}
|
sl@0
|
335 |
|
sl@0
|
336 |
CDictionaryStore* CTypeStoreManager::OpenIniFileLC() const
|
sl@0
|
337 |
// Open dtstor's ini file - will create a new one if it doesn't exist or is corrupted
|
sl@0
|
338 |
{
|
sl@0
|
339 |
const TPtrC iniFileName(IniFileName());
|
sl@0
|
340 |
TInt err=iFs.MkDirAll(iniFileName);
|
sl@0
|
341 |
if(err!=KErrAlreadyExists)
|
sl@0
|
342 |
{
|
sl@0
|
343 |
User::LeaveIfError(err);
|
sl@0
|
344 |
}
|
sl@0
|
345 |
CDictionaryStore* iniFile=NULL;
|
sl@0
|
346 |
TRAP(err,iniFile=CDictionaryFileStore::OpenL(iFs,iniFileName,KUidDatastor));
|
sl@0
|
347 |
if (err==KErrNone)
|
sl@0
|
348 |
{
|
sl@0
|
349 |
CleanupStack::PushL(iniFile);
|
sl@0
|
350 |
}
|
sl@0
|
351 |
else if (err==KErrEof || err==KErrCorrupt)
|
sl@0
|
352 |
{
|
sl@0
|
353 |
User::LeaveIfError(iFs.Delete(iniFileName));
|
sl@0
|
354 |
iniFile=CDictionaryFileStore::OpenLC(iFs,iniFileName,KUidDatastor);
|
sl@0
|
355 |
err=KErrNone;
|
sl@0
|
356 |
}
|
sl@0
|
357 |
User::LeaveIfError(err);
|
sl@0
|
358 |
return iniFile;
|
sl@0
|
359 |
}
|
sl@0
|
360 |
|
sl@0
|
361 |
EXPORT_C void CTypeStoreManager::InsertAndStoreDataMappingL(const TDataType& aDataType,
|
sl@0
|
362 |
TDataTypePriority aPriority, TUid aUid)
|
sl@0
|
363 |
{
|
sl@0
|
364 |
InsertAndStoreDataMappingL(aDataType, aPriority, aUid, KOpenServiceUid);
|
sl@0
|
365 |
}
|
sl@0
|
366 |
|
sl@0
|
367 |
EXPORT_C void CTypeStoreManager::InsertAndStoreDataMappingL(const TDataType& aDataType,
|
sl@0
|
368 |
TDataTypePriority aPriority, TUid aUid, TUid aServiceUid)
|
sl@0
|
369 |
{
|
sl@0
|
370 |
InsertDataMappingL(aDataType, aPriority, aUid, aServiceUid);
|
sl@0
|
371 |
TRAPD(ret,StoreL());
|
sl@0
|
372 |
if(ret!=KErrNone)
|
sl@0
|
373 |
{
|
sl@0
|
374 |
DeleteDataMapping(aDataType, aServiceUid);
|
sl@0
|
375 |
}
|
sl@0
|
376 |
}
|
sl@0
|
377 |
|
sl@0
|
378 |
EXPORT_C TBool CTypeStoreManager::InsertAndStoreIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid)
|
sl@0
|
379 |
{
|
sl@0
|
380 |
return InsertAndStoreIfHigherL(aDataType, aPriority, aUid, KOpenServiceUid);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
|
sl@0
|
383 |
EXPORT_C TBool CTypeStoreManager::InsertAndStoreIfHigherL(const TDataType& aDataType,
|
sl@0
|
384 |
TDataTypePriority aPriority, TUid aUid, TUid aServiceUid)
|
sl@0
|
385 |
{
|
sl@0
|
386 |
TInt i = FindDataMapping( aDataType, aServiceUid );
|
sl@0
|
387 |
if ( i == KErrNotFound || iAppMappings[i].iPriority < aPriority )
|
sl@0
|
388 |
{
|
sl@0
|
389 |
InsertAndStoreDataMappingL( aDataType, aPriority, aUid, aServiceUid );
|
sl@0
|
390 |
return ETrue;
|
sl@0
|
391 |
}
|
sl@0
|
392 |
else
|
sl@0
|
393 |
return EFalse;
|
sl@0
|
394 |
}
|
sl@0
|
395 |
|
sl@0
|
396 |
EXPORT_C void CTypeStoreManager::DeleteAndStoreDataMappingL(const TDataType& aDataType)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
DeleteAndStoreDataMappingL(aDataType, KOpenServiceUid);
|
sl@0
|
399 |
}
|
sl@0
|
400 |
|
sl@0
|
401 |
EXPORT_C void CTypeStoreManager::DeleteAndStoreDataMappingL(const TDataType& aDataType,
|
sl@0
|
402 |
TUid aServiceUid)
|
sl@0
|
403 |
{
|
sl@0
|
404 |
TInt i=FindDataMapping(aDataType, aServiceUid);
|
sl@0
|
405 |
__ASSERT_DEBUG(i!=KErrNotFound,User::Invariant());
|
sl@0
|
406 |
TMappingDataTypeToApp mapping (iAppMappings[i].iDataType,iAppMappings[i].iPriority,iAppMappings[i].iAppUid,iAppMappings[i].iServiceUid);
|
sl@0
|
407 |
iAppMappings.Delete(i);
|
sl@0
|
408 |
TRAPD(ret,StoreL());
|
sl@0
|
409 |
if(ret!=KErrNone)
|
sl@0
|
410 |
{
|
sl@0
|
411 |
iAppMappings.InsertL(i,mapping);
|
sl@0
|
412 |
}
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
//Removes data mappings related to aAppUid
|
sl@0
|
416 |
//Returns modification status of service registry
|
sl@0
|
417 |
EXPORT_C TBool CTypeStoreManager::DeleteApplicationDataMappings(const TUid aAppUid)
|
sl@0
|
418 |
{
|
sl@0
|
419 |
TInt count=iAppMappings.Count();
|
sl@0
|
420 |
TInt index=0;
|
sl@0
|
421 |
TBool modified=EFalse;
|
sl@0
|
422 |
|
sl@0
|
423 |
//goes through service registry to find data mappings related to aAppUid
|
sl@0
|
424 |
while(index<count)
|
sl@0
|
425 |
{
|
sl@0
|
426 |
if (iAppMappings[index].iAppUid==aAppUid)
|
sl@0
|
427 |
{
|
sl@0
|
428 |
iAppMappings.Delete(index);
|
sl@0
|
429 |
//As data mapping is removed from service registry, reduce the count
|
sl@0
|
430 |
count--;
|
sl@0
|
431 |
modified=ETrue;
|
sl@0
|
432 |
}
|
sl@0
|
433 |
else
|
sl@0
|
434 |
index++;
|
sl@0
|
435 |
}
|
sl@0
|
436 |
return(modified);
|
sl@0
|
437 |
}
|