Update contrib.
1 // Copyright (c) 2004-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 #include "S32FileIter.h"
22 After calling Close() RPermanentFileStoreIter instance could be used again
23 with the same or some other CPermanentFileStore instance.
25 EXPORT_C void RPermanentFileStoreIter::Close()
36 Starts a CPermanentFileStore stream IDs iteration.
37 @param aStore CPermanentFileStore instance, which stream IDs sequence we want to
41 EXPORT_C void RPermanentFileStoreIter::ResetLC(const CPermanentFileStore& aStore)
43 __ASSERT_DEBUG(!iImpl, User::Invariant());
44 ::CleanupClosePushL(*this);
45 CPermanentStoreCoord& coord = aStore.CoordL();
46 CPermanentStoreToc& table = coord.TableL();
47 iImpl = new (ELeave) RPermanentStoreTocIter(table);
52 Retrieves the next stream ID from stream IDs sequence, controlled by CPermanentFileStore
54 @return The next stream ID or KNullStreamIdValue if there are no more stream IDs.
57 EXPORT_C TStreamId RPermanentFileStoreIter::NextL()
59 __ASSERT_DEBUG(iImpl, User::Invariant());
60 TStreamId streamId = KNullStreamIdValue;
61 CPermanentStoreToc::TEntry entry;
62 while(iImpl->NextL(entry))
64 if((TUint32)entry.handle < KMaxStreamIdValue)
66 streamId = entry.handle;