os/persistentdata/persistentstorage/store/UFILE/UF_UTL.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-2010 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 #pragma BullseyeCoverage off
    19 
    20 //
    21 // Panic the process with STORE-File as the category.
    22 //
    23 GLDEF_C void Panic(TFilePanic aPanic)
    24 	{
    25 	_LIT(KCategory,"STORE-File");
    26 	User::Panic(KCategory,aPanic);
    27 	}
    28 
    29 #pragma BullseyeCoverage on
    30 
    31 EXPORT_C CFileStore* FileStoreFactory::DirectLC(RFileBuf& aBuf,const TUidType& aType)
    32 /** Opens an existing direct file store and creates a file store object to represent 
    33 it.
    34 
    35 @param aBuf The stream buffer to be used.
    36 @param aType The Uidtype for the store.
    37 @return A pointer to the new direct file store object. This is Null, if the 
    38 specified Uidtype is KNullUid or the first Uid component is not KDirectFileStoreLayoutUid. */
    39 	{
    40 	if ((! aType.IsValid()) || aType[0]!=KDirectFileStoreLayoutUid)
    41 		return NULL;
    42 //
    43 	CDirectFileStore* store=new(ELeave) CDirectFileStore(aBuf,aType);
    44 	CleanupStack::PushL(store);
    45 	store->MarshalL();
    46 	return store;
    47 	}
    48 
    49 EXPORT_C CFileStore* FileStoreFactory::PermanentLC(RFileBuf& aBuf,const TUidType& aType)
    50 /** Opens an existing permanent file store and creates a file store object to represent 
    51 it.
    52 
    53 @param aBuf The stream buffer to be used.
    54 @param aType The Uidtype for the store.
    55 @return A pointer to the new permanent file store object. This is Null, if 
    56 the specified Uidtype is KNullUid or the first Uid component is not KPermanentFileStoreLayoutUid. */
    57 	{
    58 	if ((! aType.IsValid()) || aType[0]!=KPermanentFileStoreLayoutUid)
    59 		return NULL;
    60 //
    61 	CPermanentFileStore* store=new(ELeave) CPermanentFileStore(aBuf,aType);
    62 	CleanupStack::PushL(store);
    63 	store->MarshalL();
    64 	return store;
    65 	}
    66