sl@0: // Copyright (c) 1998-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "UF_STD.H" sl@0: sl@0: #pragma BullseyeCoverage off sl@0: sl@0: // sl@0: // Panic the process with STORE-File as the category. sl@0: // sl@0: GLDEF_C void Panic(TFilePanic aPanic) sl@0: { sl@0: _LIT(KCategory,"STORE-File"); sl@0: User::Panic(KCategory,aPanic); sl@0: } sl@0: sl@0: #pragma BullseyeCoverage on sl@0: sl@0: EXPORT_C CFileStore* FileStoreFactory::DirectLC(RFileBuf& aBuf,const TUidType& aType) sl@0: /** Opens an existing direct file store and creates a file store object to represent sl@0: it. sl@0: sl@0: @param aBuf The stream buffer to be used. sl@0: @param aType The Uidtype for the store. sl@0: @return A pointer to the new direct file store object. This is Null, if the sl@0: specified Uidtype is KNullUid or the first Uid component is not KDirectFileStoreLayoutUid. */ sl@0: { sl@0: if ((! aType.IsValid()) || aType[0]!=KDirectFileStoreLayoutUid) sl@0: return NULL; sl@0: // sl@0: CDirectFileStore* store=new(ELeave) CDirectFileStore(aBuf,aType); sl@0: CleanupStack::PushL(store); sl@0: store->MarshalL(); sl@0: return store; sl@0: } sl@0: sl@0: EXPORT_C CFileStore* FileStoreFactory::PermanentLC(RFileBuf& aBuf,const TUidType& aType) sl@0: /** Opens an existing permanent file store and creates a file store object to represent sl@0: it. sl@0: sl@0: @param aBuf The stream buffer to be used. sl@0: @param aType The Uidtype for the store. sl@0: @return A pointer to the new permanent file store object. This is Null, if sl@0: the specified Uidtype is KNullUid or the first Uid component is not KPermanentFileStoreLayoutUid. */ sl@0: { sl@0: if ((! aType.IsValid()) || aType[0]!=KPermanentFileStoreLayoutUid) sl@0: return NULL; sl@0: // sl@0: CPermanentFileStore* store=new(ELeave) CPermanentFileStore(aBuf,aType); sl@0: CleanupStack::PushL(store); sl@0: store->MarshalL(); sl@0: return store; sl@0: } sl@0: