os/persistentdata/persistentstorage/store/UFILE/UF_STOR.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-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 "UF_STD.H"
    17 
    18 const TFileStoreFactoryFunction KDefaultFileStoreFactory[]=
    19 	{
    20 	KDirectFileStoreFactoryFunction,
    21 	KPermanentFileStoreFactoryFunction,
    22 	NULL
    23 	};
    24 
    25 EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode)
    26 /** Opens a file containing a store and constructs an appropriate file store object.
    27 
    28 The resulting file store object is of concrete type, i.e. either CDirectFileStore 
    29 or CPermanentFileStore. The specific type is determined from the layout information 
    30 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
    31 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
    32 when the file server write caching is enabled, the order of file write operations is not guaranteed. 
    33 This could cause data inconsistency in some circumstances, for example, when the power  is lost in
    34  the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
    35 
    36 
    37 @param aFs Handle to a file server session.
    38 @param aName The full path name of the file containing the store.
    39 @param aFileMode The mode in which the file is to be accessed. The mode is 
    40 defined by the TFileMode type.
    41 @return A pointer to the new file store object. 
    42 @see TFileMode
    43 @see CFileStore::Layout() */
    44 	{
    45 	return OpenL(aFs,aName,aFileMode,KDefaultFileStoreFactory);
    46 	}
    47 
    48 EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
    49 /** Opens a file containing a store, constructs an appropriate file store object 
    50 and places the pointer onto the cleanup stack.
    51 
    52 The resulting file store object is of concrete type, i.e. either CDirectFileStore 
    53 or CPermanentFileStore. The specific type is determined from the layout information 
    54 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
    55 it is strongly recommended to set EFileWriteDirectIO bit when opening the file. This is because that
    56 when the file server write caching is enabled, the order of file write operations is not guaranteed. 
    57 This could cause data inconsistency in some circumstances, for example, when the power  is lost in
    58  the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
    59 
    60 
    61 @param aFs Handle to a file server session. 
    62 @param aName The full path name of the file containing the store. 
    63 @param aFileMode The mode in which the file is to be accessed. The mode is 
    64 defined by the TFileMode type. 
    65 @return A pointer to the new file store object. 
    66 @see TFileMode
    67 @see CFileStore::Layout() */
    68 	{
    69 	return OpenLC(aFs,aName,aFileMode,KDefaultFileStoreFactory);
    70 	}
    71 
    72 EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile)
    73 /** Constructs a file store object from an opened file.
    74 
    75 The file must already be open before calling this function.
    76 
    77 The resulting file store object is of concrete type, i.e. either CDirectFileStore 
    78 or CPermanentFileStore. The specific type is determined from the layout information 
    79 held in the file store.
    80 
    81 Note that ownership of the file passes to the store. The referenced RFile 
    82 is cleared and is no longer valid:
    83 
    84 @param aFile A reference to the opened file. 
    85 @return A pointer to the new file store object. 
    86 @see CFileStore::Layout() */
    87 	{
    88 	return FromL(aFile,KDefaultFileStoreFactory);
    89 	}
    90 
    91 EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile)
    92 /** Constructs a file store object from an opened file, and places the pointer 
    93 onto the cleanup stack.
    94 
    95 The file must already be open before calling this function.
    96 
    97 The resulting file store object is of concrete type, i.e. either CDirectFileStore 
    98 or CPermanentFileStore. The specific type is determined from the layout information 
    99 held in the file store.
   100 
   101 Note that ownership of the file passes to the store. The referenced RFile 
   102 is cleared and is no longer valid:
   103 
   104 @param aFile A reference to the opened file. 
   105 @return A pointer to the new file store object. 
   106 @see CFileStore::Layout() */
   107 	{
   108 	return FromLC(aFile,KDefaultFileStoreFactory);
   109 	}
   110 
   111 /** Opens a file containing a store and constructs an appropriate file store object.
   112 
   113 The resulting file store object is of concrete type, i.e. either CDirectFileStore 
   114 or CPermanentFileStore. The specific type is determined from the layout information 
   115 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
   116 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
   117 when the file server write caching is enabled, the order of file write operations is not guaranteed. 
   118 This could cause data inconsistency in some circumstances, for example, when the power  is lost in
   119 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
   120 
   121 
   122 @param aFs Handle to a file server session.
   123 @param aName The full path name of the file containing the store.
   124 @param aFileMode The mode in which the file is to be accessed. The mode is 
   125 defined by the TFileMode type.
   126 @param TFileStoreFactoryFunction An array of  file store factory function.
   127 @return A pointer to the new file store object. 
   128 @see TFileMode
   129 @see TFileStoreFactoryFunction
   130 */
   131 EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode,const TFileStoreFactoryFunction aFactory[])
   132 //
   133 // Open a file store of any of the types supported by aFactory.
   134 //
   135 	{
   136 	RFile file;
   137 	__LEAVE_IF_ERROR(file.Open(aFs,aName,aFileMode));
   138 	return FromL(file,aFactory);
   139 	}
   140 
   141 /** Opens a file containing a store and constructs an appropriate file store object.
   142 
   143 The resulting file store object is of concrete type, i.e. either CDirectFileStore 
   144 or CPermanentFileStore. The specific type is determined from the layout information 
   145 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
   146 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
   147 when the file server write caching is enabled, the order of file write operations is not guaranteed. 
   148 This could cause data inconsistency in some circumstances, for example, when the power  is lost in
   149 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
   150 
   151 
   152 @param aFs Handle to a file server session.
   153 @param aName The full path name of the file containing the store.
   154 @param aFileMode The mode in which the file is to be accessed. The mode is 
   155 defined by the TFileMode type.
   156 @param TFileStoreFactoryFunction An array of file store factory function.
   157 @return A pointer to the new file store object. 
   158 @see TFileMode
   159 @see TFileStoreFactoryFunction
   160 */
   161 EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode,const TFileStoreFactoryFunction aFactory[])
   162 //
   163 // Open and leave on cleanup stack.
   164 //
   165 	{
   166 	CFileStore* store=OpenL(aFs,aName,aFileMode,aFactory);
   167 	CleanupStack::PushL(store);
   168 	return store;
   169 	}
   170 
   171 EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile,const TFileStoreFactoryFunction aFactory[])
   172 //
   173 // Read the file header and let every factory function in turn try to open it.
   174 //
   175 	{
   176 	RFileBuf buf;
   177 	buf.Attach(aFile);
   178 	buf.PushL();
   179 	RReadStream stream(&buf);
   180 	TCheckedUid chk;
   181 	stream>>chk;
   182 	if (chk.UidType().IsValid())
   183 		{
   184 		const TFileStoreFactoryFunction* iter=&aFactory[0];
   185 		TFileStoreFactoryFunction func;
   186 		while ((func=*iter++)!=NULL)
   187 			{
   188 			CFileStore* store=(*func)(buf,chk.UidType());
   189 			if (store!=NULL)
   190 				{
   191 				CleanupStack::Pop(2);
   192 				return store;
   193 				}
   194 			}
   195 		}
   196 //
   197 	__LEAVE(KErrNotSupported);
   198 	return NULL;
   199 	}
   200 
   201 EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile,const TFileStoreFactoryFunction aFactory[])
   202 //
   203 // Open and leave on cleanup stack.
   204 //
   205 	{
   206 	CFileStore* store=FromL(aFile,aFactory);
   207 	CleanupStack::PushL(store);
   208 	return store;
   209 	}
   210 
   211 EXPORT_C void CFileStore::SetTypeL(const TUidType& aType)
   212 /** Sets the UID type of the file store.
   213 
   214 The first UID, i.e. the first TUid component, of the TUidType must be the 
   215 file store type as returned by CFileStore::Layout(), otherwise the function 
   216 raises a STORE-File 9 panic.
   217 
   218 @param aType The UID type object containing the file store type. 
   219 @see TUid */
   220 	{
   221 	__ASSERT_ALWAYS(aType[0]==Layout(),Panic(EFileStoreBadType));
   222 	TCheckedUid chk(aType);
   223 	if (iHost.IsActive())
   224 		{
   225 		RShareWriteStream stream(iHost);
   226 		stream.PushL();
   227 		stream<<chk; // failure may mean the file's type information is lost
   228 		CleanupStack::PopAndDestroy();
   229 		}
   230 	else
   231 		{
   232 		TInt size=iBuf.SizeL();
   233 		RWriteStream stream(&iBuf);
   234 		stream<<chk;
   235 		if (size==0)
   236 			{
   237 			ExternalizeL(stream);
   238 			iHost.Share(&iBuf);
   239 			}
   240 		}
   241 	iType=aType;
   242 	}
   243 
   244 EXPORT_C void CFileStore::MarshalL()
   245 //
   246 // Second-phase construction for opening existing file stores.
   247 //
   248 	{
   249 	__ASSERT_DEBUG(!iHost.IsActive()&&(!iType.IsValid()||iType[0]==Layout()),User::Invariant());
   250 	RReadStream stream(&iBuf);
   251 	InternalizeL(stream);
   252 	iHost.Share(&iBuf);
   253 	}
   254 
   255 EXPORT_C CFileStore::~CFileStore()
   256 /** Frees resources owned by the object, prior to its destruction. In particular, 
   257 it closes the associated file. */
   258 	{
   259 	Destruct();
   260 	iBuf.Close();
   261 	}
   262 
   263 /** Opens a file containing a store and constructs an appropriate file store object.
   264 
   265 The resulting file store object is of concrete type, i.e. either CDirectFileStore 
   266 or CPermanentFileStore. The specific type is determined from the layout information 
   267 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
   268 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
   269 when the file server write caching is enabled, the order of file write operations is not guaranteed. 
   270 This could cause data inconsistency in some circumstances, for example, when the power  is lost in
   271 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
   272 
   273 
   274 @param aFs Handle to a file server session.
   275 @param aName The full path name of the file containing the store.
   276 @param aFileMode The mode in which the file is to be accessed. The mode is 
   277 defined by the TFileMode type.
   278 @param TFileStoreFactoryFunction A file store factory function.
   279 @return A pointer to the new file store object. 
   280 @see TFileMode
   281 @see TFileStoreFactoryFunction
   282 */
   283 EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode,TFileStoreFactoryFunction aFunction)
   284 //
   285 // Open a file store using aFunction.
   286 //
   287 	{
   288 	RFile file;
   289 	__LEAVE_IF_ERROR(file.Open(aFs,aName,aFileMode));
   290 	return FromL(file,aFunction);
   291 	}
   292 
   293 /** Opens a file containing a store and constructs an appropriate file store object.
   294 
   295 The resulting file store object is of concrete type, i.e. either CDirectFileStore 
   296 or CPermanentFileStore. The specific type is determined from the layout information 
   297 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
   298 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
   299 when the file server write caching is enabled, the order of file write operations is not guaranteed. 
   300 This could cause data inconsistency in some circumstances, for example, when the power  is lost in
   301 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
   302 
   303 
   304 @param aFs Handle to a file server session.
   305 @param aName The full path name of the file containing the store.
   306 @param aFileMode The mode in which the file is to be accessed. The mode is 
   307 defined by the TFileMode type.
   308 @param TFileStoreFactoryFunction A file store factory function.
   309 @return A pointer to the new file store object. 
   310 @see TFileMode
   311 @see TFileStoreFactoryFunction
   312 */
   313 EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TFileStoreFactoryFunction aFunction)
   314 //
   315 // Open and leave on cleanup stack.
   316 //
   317 	{
   318 	CFileStore* store=OpenL(aFs,aName,aFileMode,aFunction);
   319 	CleanupStack::PushL(store);
   320 	return store;
   321 	}
   322 
   323 EXPORT_C CFileStore* CFileStore::CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
   324 //
   325 // Create a file store using aFunction. Must not already exist.
   326 //
   327 	{
   328 	RFile file;
   329 	__LEAVE_IF_ERROR(file.Create(aFs,aName,aFileMode));
   330 	return DoNewL(file,aFunction);
   331 	}
   332 
   333 EXPORT_C CFileStore* CFileStore::CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
   334 //
   335 // Create and leave on cleanup stack.
   336 //
   337 	{
   338 	CFileStore* store=CreateL(aFs,aName,aFileMode,aFunction);
   339 	CleanupStack::PushL(store);
   340 	return store;
   341 	}
   342 
   343 EXPORT_C CFileStore* CFileStore::ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
   344 //
   345 // Replace a file store using aFunction. May exist already.
   346 //
   347 	{
   348 	RFile file;
   349 	__LEAVE_IF_ERROR(file.Replace(aFs,aName,aFileMode));
   350 	return DoNewL(file,aFunction);
   351 	}
   352 
   353 EXPORT_C CFileStore* CFileStore::ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
   354 //
   355 // Replace and leave on cleanup stack.
   356 //
   357 	{
   358 	CFileStore* store=ReplaceL(aFs,aName,aFileMode,aFunction);
   359 	CleanupStack::PushL(store);
   360 	return store;
   361 	}
   362 
   363 EXPORT_C CFileStore* CFileStore::TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode,TNewFunction aFunction)
   364 //
   365 // Create a temporary file store using aFunction.
   366 //
   367 	{
   368 	RFile file;
   369 	__LEAVE_IF_ERROR(file.Temp(aFs,aPath,aName,aFileMode));
   370 	return DoNewL(file,aFunction);
   371 	}
   372 
   373 EXPORT_C CFileStore* CFileStore::TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode,TNewFunction aFunction)
   374 //
   375 // Create temporary and leave on cleanup stack.
   376 //
   377 	{
   378 	CFileStore* store=TempL(aFs,aPath,aName,aFileMode,aFunction);
   379 	CleanupStack::PushL(store);
   380 	return store;
   381 	}
   382 
   383 EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile,TFileStoreFactoryFunction aFunction)
   384 //
   385 // Open a file store using aFunction, given its file handle.
   386 //
   387 	{
   388 	RFileBuf buf;
   389 	buf.Attach(aFile);
   390 	buf.PushL();
   391 	RReadStream stream(&buf);
   392 	TCheckedUid chk;
   393 	stream>>chk;
   394 	CFileStore* store=(*aFunction)(buf,chk.UidType());
   395 	if (store==NULL) 
   396 		{
   397 		aFile.Close();
   398 		__LEAVE(KErrNotSupported);
   399 		}
   400 //
   401 	CleanupStack::Pop(2);
   402 	return store;
   403 	}
   404 
   405 EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile,TFileStoreFactoryFunction aFunction)
   406 //
   407 // Open and leave on cleanup stack.
   408 //
   409 	{
   410 	CFileStore* store=FromL(aFile,aFunction);
   411 	CleanupStack::PushL(store);
   412 	return store;
   413 	}
   414 
   415 EXPORT_C CFileStore* CFileStore::NewL(RFile& aFile,TNewFunction aFunction)
   416 //
   417 // Create a file store using aFunction, given its file handle.
   418 //
   419 	{
   420 	TInt r=aFile.SetSize(0);
   421 	if (r!=KErrNone)
   422 		{
   423 		aFile.Close();
   424 		__LEAVE(r);
   425 		}
   426 	return DoNewL(aFile,aFunction);
   427 	}
   428 
   429 EXPORT_C CFileStore* CFileStore::NewLC(RFile& aFile,TNewFunction aFunction)
   430 //
   431 // Create and leave on cleanup stack.
   432 //
   433 	{
   434 	CFileStore* store=NewL(aFile,aFunction);
   435 	CleanupStack::PushL(store);
   436 	return store;
   437 	}
   438 
   439 EXPORT_C CFileStore::CFileStore(RFile& aFile)
   440 //
   441 // Constructor creating a new file store.
   442 //
   443 	{
   444 	iBuf.Attach(aFile);
   445 	iBuf.iExt = 0;
   446 	}
   447 
   448 EXPORT_C CFileStore::CFileStore(RFileBuf& aBuf,const TUidType& aType)
   449 //
   450 // Constructor opening an existing file store.
   451 //
   452 	: iBuf(Capture(aBuf)),iType(aType)
   453 	{}
   454 
   455 EXPORT_C void CFileStore::Destruct()
   456 //
   457 // Early destruction, for derived classes overriding DoRevertL().
   458 //
   459 	{
   460 	if (iHost.IsActive())
   461 		{
   462 		iHost.Release();
   463 		}
   464 	}
   465 
   466 EXPORT_C void CFileStore::SynchL()
   467 //
   468 // Synchronise this file store's file buffer.
   469 //
   470 	{
   471 	TStreamExchange& host=iHost;
   472 	if (host.IsActive())
   473 		{
   474 		MStreamBuf* buf=host.HostL();
   475 		__ASSERT_DEBUG(IsHost(buf),User::Invariant());
   476 		host.Release(); // make sure no writes fail silently by shutting down on failure
   477 		buf->SynchL();
   478 		host.Share(buf);
   479 		}
   480 	else
   481 		iBuf.SynchL();
   482 	}
   483 
   484 EXPORT_C void CFileStore::ChangedL()
   485 //
   486 // Re-write this file store's structure.
   487 //
   488 	{
   489 	__ASSERT_DEBUG(iHost.IsActive(),User::Invariant());
   490 	RShareWriteStream stream(iHost,KFileStoreStart);
   491 	stream.PushL();
   492 	ExternalizeL(stream);
   493 	CleanupStack::PopAndDestroy();
   494 	}
   495 
   496 EXPORT_C void CFileStore::RefreshL()
   497 //
   498 // Re-read this file store's structure.
   499 //
   500 	{
   501 	if (iHost.IsActive())
   502 		{
   503 		RShareReadStream stream(iHost,KFileStoreStart);
   504 		stream.PushL();
   505 		InternalizeL(stream);
   506 		CleanupStack::PopAndDestroy();
   507 		}
   508 	else
   509 		{
   510 		iBuf.SeekL(iBuf.ERead,KFileStoreStart);
   511 		MarshalL();
   512 		}
   513 	}
   514 
   515 EXPORT_C void CFileStore::DoCommitL()
   516 //
   517 // Default implementation just synchronising.
   518 //
   519 	{
   520 	SynchL();
   521 	}
   522 
   523 EXPORT_C void CFileStore::DoRevertL()
   524 //
   525 // Default implementation failing after synchronisation.
   526 //
   527 	{
   528 	SynchL();
   529 	__LEAVE(KErrNotSupported);
   530 	}
   531 
   532 CFileStore* CFileStore::DoNewL(RFile& aFile,TNewFunction aFunction)
   533 	{
   534 	CleanupClosePushL(aFile);
   535 	CFileStore* store=(*aFunction)(aFile);
   536 	CleanupStack::Pop();
   537 	return store;
   538 	}
   539