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