Update contrib.
1 // Copyright (c) 1997-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.
19 const TUid KOpenServiceUid = { 0x10208DCA };
21 const TInt KAppMappingGranularity=1;
23 // class TMappingDataTypeToApp
26 EXPORT_C TMappingDataTypeToApp::TMappingDataTypeToApp()
27 :iDataType(TDataType(_L8(""))), iServiceUid(KOpenServiceUid)
32 EXPORT_C TMappingDataTypeToApp::TMappingDataTypeToApp(const TDataType& aDataType,
33 TDataTypePriority aPriority, TUid aAppUid)
34 :iDataType(aDataType),
37 iServiceUid(KOpenServiceUid)
41 EXPORT_C TMappingDataTypeToApp::TMappingDataTypeToApp(const TDataType& aDataType,
42 TDataTypePriority aPriority, TUid aAppUid, TUid aServiceUid)
43 :iDataType(aDataType),
46 iServiceUid(aServiceUid)
50 EXPORT_C void TMappingDataTypeToApp::InternalizeL(RReadStream& aStream)
53 iPriority=aStream.ReadInt32L();
54 iAppUid.iUid=aStream.ReadInt32L();
55 iServiceUid.iUid=aStream.ReadInt32L();
58 EXPORT_C void TMappingDataTypeToApp::ExternalizeL(RWriteStream& aStream) const
61 aStream.WriteInt32L(iPriority);
62 aStream.WriteInt32L(iAppUid.iUid);
63 aStream.WriteInt32L(iServiceUid.iUid);
68 // class CTypeStoreManager
71 EXPORT_C void CTypeStoreManager::InternalizeL(RReadStream& aStream)
72 /** Internalises the array of data type mappings from a read stream.
74 @param aStream Stream from which the data type mappings are internalised. */
76 aStream >> iAppMappings;
79 EXPORT_C void CTypeStoreManager::ExternalizeL(RWriteStream& aStream) const
80 /** Externalises the data type mappings to a write stream.
82 @param aStream Stream to which the data type mappings should be externalised. */
84 aStream << iAppMappings;
87 EXPORT_C CTypeStoreManager* CTypeStoreManager::NewL(RFs& aFs)
88 /** Constructs a CTypeStoreManager object.
90 @param aFs A session with the file server.
91 @return The newly created CTypeStoreManager object. */
93 CTypeStoreManager* self = new(ELeave) CTypeStoreManager(aFs);
94 CleanupStack::PushL(self);
96 CleanupStack::Pop(self);
100 void CTypeStoreManager::ConstructL()
102 TChar sysDrive = RFs::GetSystemDriveChar();
103 TInt maxSizeOfFileName = KIniFileName().Length() + 1;
104 iIniFileName.CreateL(maxSizeOfFileName);
105 iIniFileName.Append(sysDrive);
106 iIniFileName.Append(KIniFileName());
108 CTypeStoreManager::CTypeStoreManager(RFs& aFs)
109 : iAppMappings(KAppMappingGranularity),
112 __ASSERT_ALWAYS(RProcess().SecureId()==0x10003a3f, Panic(EPanicNotBeingUsedFromWithinApparcServerProcess));
115 EXPORT_C CTypeStoreManager::~CTypeStoreManager()
118 iIniFileName.Close();
121 EXPORT_C void CTypeStoreManager::StoreL()
122 /** Stores the data type mappings to the data store ini file
123 (c:\\System\\Data\\Dtstor.ini), creating a new ini file if it does
124 not already exist. */
126 CDictionaryStore* iniFile=OpenIniFileLC();
127 iniFile->RemoveL(KUidDatastorSettings);
128 RDictionaryWriteStream outStream;
129 outStream.AssignLC(*iniFile,KUidDatastorSettings);
132 CleanupStack::PopAndDestroy();
134 CleanupStack::PopAndDestroy(); // inifile
137 EXPORT_C void CTypeStoreManager::RestoreL()
138 /** Restores the data type mappings from the data store ini file. */
140 CDictionaryStore* iniFile=OpenIniFileLC();
141 RDictionaryReadStream inStream;
142 inStream.OpenLC(*iniFile,KUidDatastorSettings);
144 CleanupStack::PopAndDestroy(2); // inStream * iniFile
147 /** Changes an existing data type mapping, or adds a new one.
149 If the data type does not exist in the store, the new mapping is appended.
150 If the data type does exist, its mapping is replaced.
152 The service is considered to be the KOpenServiceUid service.
154 @param aDataType A new or existing data type.
155 @param aPriority The priority with which the application handles the data type.
156 @param aUid The UID of the application to associate with the data type.
158 EXPORT_C void CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid)
160 InsertDataMappingL(aDataType, aPriority, aUid, KOpenServiceUid);
163 /** Changes an existing data type mapping, or adds a new one.
165 If the data type does not exist in the store, the new mapping is appended.
166 If the data type does exist, its mapping is replaced.
168 @param aDataType A new or existing data type.
169 @param aPriority The priority with which the application handles the data type.
170 @param aUid The UID of the application to associate with the data type.
171 @param aServiceUid The UID of the service.
173 EXPORT_C void CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType,
174 TDataTypePriority aPriority, TUid aUid, TUid aServiceUid)
176 TInt i = FindDataMapping(aDataType, aServiceUid);
177 if ( i == KErrNotFound )
178 iAppMappings.AppendL( TMappingDataTypeToApp( aDataType, aPriority, aUid, aServiceUid ) );
181 TMappingDataTypeToApp& mapping = iAppMappings[i];
182 mapping.iDataType=aDataType;
183 mapping.iPriority=aPriority;
184 mapping.iAppUid=aUid;
185 mapping.iServiceUid=aServiceUid;
189 /** Changes an existing data type mapping, or adds a new one.
190 If the data type does not exist in the store, or if it does and its existing priority
191 is less than aPriority, the new mapping is added to the store, or replaces the existing one.
192 Otherwise, no change is made.
194 The service is considered to be the KOpenServiceUid service.
196 @param aDataType A new or existing data type.
197 @param aPriority The priority with which the application handles the data type.
198 @param aUid The UID of the application to associate with the data type.
199 @return ETrue if the new mapping was added or an existing mapping replaced, EFalse if no
202 EXPORT_C TBool CTypeStoreManager::InsertIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid)
204 return InsertIfHigherL(aDataType, aPriority, aUid, KOpenServiceUid);
207 /** Changes an existing data type mapping, or adds a new one.
208 If the data type does not exist in the store, or if it does and its existing priority
209 is less than aPriority, the new mapping is added to the store, or replaces the existing one.
210 Otherwise, no change is made.
212 @param aDataType A new or existing data type.
213 @param aPriority The priority with which the application handles the data type.
214 @param aUid The UID of the application to associate with the data type.
215 @param aServiceUid The UID of the service.
216 @return ETrue if the new mapping was added or an existing mapping replaced, EFalse if no
219 EXPORT_C TBool CTypeStoreManager::InsertIfHigherL(const TDataType& aDataType,
220 TDataTypePriority aPriority, TUid aUid, TUid aServiceUid)
222 TInt i = FindDataMapping( aDataType, aServiceUid );
223 if ( i == KErrNotFound || iAppMappings[i].iPriority < aPriority )
225 InsertDataMappingL( aDataType, aPriority, aUid, aServiceUid );
232 /** Removes an existing data type mapping from the store.
234 The service is considered to be the KOpenServiceUid service.
236 @param aDataType Data type whose mapping should be removed.
237 @panic USER 0 The specified data type cannot be found. Debug builds only.
239 EXPORT_C void CTypeStoreManager::DeleteDataMapping(const TDataType& aDataType)
241 DeleteDataMapping(aDataType, KOpenServiceUid);
244 /** Removes an existing data type mapping from the store.
246 @param aDataType Data type whose mapping should be removed.
247 @param aServiceUid The UID of the service.
248 @panic USER 0 The specified data type cannot be found. Debug builds only.
250 EXPORT_C void CTypeStoreManager::DeleteDataMapping(const TDataType& aDataType,
253 TInt i=FindDataMapping(aDataType, aServiceUid);
254 __ASSERT_DEBUG(i!=KErrNotFound,User::Invariant());
255 iAppMappings.Delete(i);
258 /** Gets the UID of the application mapped to the specified data type.
260 The service is considered to be the KOpenServiceUid service.
262 @param aDataType The data type.
263 @param aUid On return, the UID of the application associated with the
264 data type, or KNullUid if the data type is not found.
266 EXPORT_C void CTypeStoreManager::GetAppByDataType(const TDataType& aDataType, TUid& aUid) const
268 GetAppByDataType(aDataType, KOpenServiceUid, aUid);
271 /** Gets the UID of the application mapped to the specified data type.
273 The service is considered to be the KOpenServiceUid service.
275 @param aDataType The data type.
276 @param aServiceUid The UID of the service.
277 @param aUid On return, the UID of the application associated with the
278 data type, or KNullUid if the data type is not found.
280 EXPORT_C void CTypeStoreManager::GetAppByDataType(const TDataType& aDataType,
281 TUid aServiceUid, TUid& aUid) const
283 TInt i=FindDataMapping(aDataType, aServiceUid);
284 aUid=(i==KErrNotFound? KNullUid : iAppMappings[i].iAppUid);
287 EXPORT_C void CTypeStoreManager::GetDataTypesByAppL(TUid aUid, CArrayFix<TDataType>* aTypeArray) const
288 /** Populates an array with all the data types supported by the specified application.
290 If the specified UID is zero, the array is populated with all the data types found in
293 @param aUid An application UID.
294 @param aTypeArray An empty array. On return, contains all data types supported by the
296 @panic APMIME 5 The array is NULL.
297 @panic APMIME 6 The array passed to the function is not empty. Debug builds only. */
299 __ASSERT_ALWAYS(aTypeArray,Panic(EInvalidArgument));
300 __ASSERT_DEBUG(!aTypeArray->Count(),Panic(EArrayNotEmpty));
301 TInt count=iAppMappings.Count();
302 for (TInt i=0; i<count; i++)
304 if ((iAppMappings[i].iAppUid==aUid || aUid.iUid==0) &&
305 (iAppMappings[i].iServiceUid == KOpenServiceUid))
307 aTypeArray->AppendL(iAppMappings[i].iDataType);
312 EXPORT_C const CArrayFixFlat<TMappingDataTypeToApp>& CTypeStoreManager::MappingArray() const
313 /** Returns the array of data type mappings.
315 @return The array of data type mappings. */
320 TInt CTypeStoreManager::FindDataMapping(const TDataType& aDataType,
321 const TUid& aServiceUid) const
323 TInt count=iAppMappings.Count();
324 for (TInt i=0; i<count; i++)
326 // Match the pattern at the start of the mime type
327 if ((iAppMappings[i].iDataType.Des8().Match(aDataType.Des8())==0) &&
328 (iAppMappings[i].iServiceUid == aServiceUid))
336 CDictionaryStore* CTypeStoreManager::OpenIniFileLC() const
337 // Open dtstor's ini file - will create a new one if it doesn't exist or is corrupted
339 const TPtrC iniFileName(IniFileName());
340 TInt err=iFs.MkDirAll(iniFileName);
341 if(err!=KErrAlreadyExists)
343 User::LeaveIfError(err);
345 CDictionaryStore* iniFile=NULL;
346 TRAP(err,iniFile=CDictionaryFileStore::OpenL(iFs,iniFileName,KUidDatastor));
349 CleanupStack::PushL(iniFile);
351 else if (err==KErrEof || err==KErrCorrupt)
353 User::LeaveIfError(iFs.Delete(iniFileName));
354 iniFile=CDictionaryFileStore::OpenLC(iFs,iniFileName,KUidDatastor);
357 User::LeaveIfError(err);
361 EXPORT_C void CTypeStoreManager::InsertAndStoreDataMappingL(const TDataType& aDataType,
362 TDataTypePriority aPriority, TUid aUid)
364 InsertAndStoreDataMappingL(aDataType, aPriority, aUid, KOpenServiceUid);
367 EXPORT_C void CTypeStoreManager::InsertAndStoreDataMappingL(const TDataType& aDataType,
368 TDataTypePriority aPriority, TUid aUid, TUid aServiceUid)
370 InsertDataMappingL(aDataType, aPriority, aUid, aServiceUid);
374 DeleteDataMapping(aDataType, aServiceUid);
378 EXPORT_C TBool CTypeStoreManager::InsertAndStoreIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid)
380 return InsertAndStoreIfHigherL(aDataType, aPriority, aUid, KOpenServiceUid);
383 EXPORT_C TBool CTypeStoreManager::InsertAndStoreIfHigherL(const TDataType& aDataType,
384 TDataTypePriority aPriority, TUid aUid, TUid aServiceUid)
386 TInt i = FindDataMapping( aDataType, aServiceUid );
387 if ( i == KErrNotFound || iAppMappings[i].iPriority < aPriority )
389 InsertAndStoreDataMappingL( aDataType, aPriority, aUid, aServiceUid );
396 EXPORT_C void CTypeStoreManager::DeleteAndStoreDataMappingL(const TDataType& aDataType)
398 DeleteAndStoreDataMappingL(aDataType, KOpenServiceUid);
401 EXPORT_C void CTypeStoreManager::DeleteAndStoreDataMappingL(const TDataType& aDataType,
404 TInt i=FindDataMapping(aDataType, aServiceUid);
405 __ASSERT_DEBUG(i!=KErrNotFound,User::Invariant());
406 TMappingDataTypeToApp mapping (iAppMappings[i].iDataType,iAppMappings[i].iPriority,iAppMappings[i].iAppUid,iAppMappings[i].iServiceUid);
407 iAppMappings.Delete(i);
411 iAppMappings.InsertL(i,mapping);
415 //Removes data mappings related to aAppUid
416 //Returns modification status of service registry
417 EXPORT_C TBool CTypeStoreManager::DeleteApplicationDataMappings(const TUid aAppUid)
419 TInt count=iAppMappings.Count();
421 TBool modified=EFalse;
423 //goes through service registry to find data mappings related to aAppUid
426 if (iAppMappings[index].iAppUid==aAppUid)
428 iAppMappings.Delete(index);
429 //As data mapping is removed from service registry, reduce the count