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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #pragma BullseyeCoverage off
21 // Panic the process with STORE-File as the category.
23 GLDEF_C void Panic(TFilePanic aPanic)
25 _LIT(KCategory,"STORE-File");
26 User::Panic(KCategory,aPanic);
29 #pragma BullseyeCoverage on
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
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. */
40 if ((! aType.IsValid()) || aType[0]!=KDirectFileStoreLayoutUid)
43 CDirectFileStore* store=new(ELeave) CDirectFileStore(aBuf,aType);
44 CleanupStack::PushL(store);
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
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. */
58 if ((! aType.IsValid()) || aType[0]!=KPermanentFileStoreLayoutUid)
61 CPermanentFileStore* store=new(ELeave) CPermanentFileStore(aBuf,aType);
62 CleanupStack::PushL(store);