os/persistentdata/persistentstorage/store/INC/S32STOR.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#if !defined(__S32STOR_H__)
sl@0
    17
#define __S32STOR_H__
sl@0
    18
#if !defined(__S32STD_H__)
sl@0
    19
#include <s32std.h>
sl@0
    20
#endif
sl@0
    21
#if !defined(__S32SHARE_H__)
sl@0
    22
#include <s32share.h>
sl@0
    23
#endif
sl@0
    24
#if !defined(__S32PAGE_H__)
sl@0
    25
#include <s32page.h>
sl@0
    26
#endif
sl@0
    27
sl@0
    28
class MIncrementalCollector;
sl@0
    29
/**
sl@0
    30
 * @publishedAll 
sl@0
    31
 * @released
sl@0
    32
 * Provides the core abstract framework for stores allowing streams to be 
sl@0
    33
created and manipulated.  
sl@0
    34
*/
sl@0
    35
class CStreamStore : public CBase
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	inline TStreamId ExtendL();
sl@0
    39
	IMPORT_C void Delete(TStreamId anId);
sl@0
    40
	IMPORT_C void DeleteL(TStreamId anId);
sl@0
    41
//
sl@0
    42
	IMPORT_C TInt Commit();
sl@0
    43
	inline void CommitL();
sl@0
    44
	IMPORT_C void Revert();
sl@0
    45
	inline void RevertL();
sl@0
    46
//
sl@0
    47
	IMPORT_C TInt ReclaimL();
sl@0
    48
	IMPORT_C TInt CompactL();
sl@0
    49
private:
sl@0
    50
	virtual IMPORT_C TStreamId DoExtendL();
sl@0
    51
	virtual IMPORT_C void DoDeleteL(TStreamId anId);
sl@0
    52
	
sl@0
    53
	/** Opens the requested stream for reading. The function should return a 
sl@0
    54
	stream buffer positioned at the beginning of this stream.
sl@0
    55
	
sl@0
    56
	This function is called by the OpenL() and OpenLC() member functions of 
sl@0
    57
	RStoreReadStream.
sl@0
    58
	
sl@0
    59
	@param anId The stream to be read.
sl@0
    60
	@return A stream buffer positioned at the beginning of the stream to be read.
sl@0
    61
	@see RStoreReadStream::OpenL()
sl@0
    62
	@see RStoreReadStream::OpenLC() */
sl@0
    63
	virtual MStreamBuf* DoReadL(TStreamId anId) const=0;
sl@0
    64
	
sl@0
    65
	/** Creates a new stream in the store. The function gets the allocated 
sl@0
    66
	stream id in the anId parameter. A stream buffer for the stream should be 
sl@0
    67
	returned, ready to write into the new stream. This provides the 
sl@0
    68
	implementation for the RStoreWriteStream::CreateL() functions.
sl@0
    69
	
sl@0
    70
	@param anId On return, contains the allocated stream id.
sl@0
    71
	@return The stream buffer to be written to. */
sl@0
    72
	virtual MStreamBuf* DoCreateL(TStreamId& anId)=0;
sl@0
    73
	virtual IMPORT_C MStreamBuf* DoWriteL(TStreamId anId);
sl@0
    74
	virtual IMPORT_C MStreamBuf* DoReplaceL(TStreamId anId);
sl@0
    75
	virtual IMPORT_C void DoCommitL();
sl@0
    76
	virtual IMPORT_C void DoRevertL();
sl@0
    77
	virtual IMPORT_C MIncrementalCollector* DoReclaimL();
sl@0
    78
	virtual IMPORT_C MIncrementalCollector* DoCompactL();
sl@0
    79
private:
sl@0
    80
	friend class RStoreReadStream;
sl@0
    81
	friend class RStoreWriteStream;
sl@0
    82
	friend class RStoreReclaim;
sl@0
    83
	};
sl@0
    84
sl@0
    85
/**
sl@0
    86
 * @publishedAll 
sl@0
    87
 * @released
sl@0
    88
 * Persistent store abstract base class. It provides the behaviour for setting 
sl@0
    89
and retrieving the root stream id.
sl@0
    90
sl@0
    91
Before closing a persistent store, the root stream id must be set. After opening 
sl@0
    92
a persistent store, the first thing done is to look up the root stream id. 
sl@0
    93
The root stream can then be opened and data read from the store.
sl@0
    94
sl@0
    95
@see CFileStore  
sl@0
    96
*/
sl@0
    97
class CPersistentStore : public CStreamStore
sl@0
    98
	{
sl@0
    99
public:
sl@0
   100
	inline TStreamId Root() const;
sl@0
   101
	inline void SetRootL(TStreamId anId);
sl@0
   102
protected:
sl@0
   103
	inline CPersistentStore();
sl@0
   104
private:
sl@0
   105
	virtual IMPORT_C void DoSetRootL(TStreamId anId);
sl@0
   106
protected:
sl@0
   107
	TStreamId iRoot;
sl@0
   108
	};
sl@0
   109
sl@0
   110
/**
sl@0
   111
 * @publishedAll 
sl@0
   112
 * @released
sl@0
   113
 * Performs space reclamation or compaction on a permanent file store in 
sl@0
   114
incremental steps.
sl@0
   115
sl@0
   116
Reclaiming unused space makes it available for re-use by the store. Compacting 
sl@0
   117
makes unused space available for re-use by the relevant system pool — for 
sl@0
   118
example, the filing system in the case of file-based stores.
sl@0
   119
sl@0
   120
Once compaction is complete, the store must be committed.
sl@0
   121
sl@0
   122
Notes:
sl@0
   123
sl@0
   124
Space reclamation and compaction are only supported by the file store 
sl@0
   125
CPermanentFileStore and are not supported by embedded or direct file stores. 
sl@0
   126
sl@0
   127
Use active objects when implementing space reclamation or compaction 
sl@0
   128
asynchronously.
sl@0
   129
sl@0
   130
This class performs incremental compaction/reclamation. These operations can 
sl@0
   131
be performed in a possibly long running single step using CStreamStore 
sl@0
   132
functions.  
sl@0
   133
*/
sl@0
   134
class RStoreReclaim
sl@0
   135
	{
sl@0
   136
public:
sl@0
   137
	inline RStoreReclaim();
sl@0
   138
	IMPORT_C void OpenL(CStreamStore& aStore,TInt& aCount);
sl@0
   139
	IMPORT_C void OpenLC(CStreamStore& aStore,TInt& aCount);
sl@0
   140
	IMPORT_C void CompactL(CStreamStore& aStore,TInt& aCount);
sl@0
   141
	IMPORT_C void CompactLC(CStreamStore& aStore,TInt& aCount);
sl@0
   142
	inline void Close();
sl@0
   143
	IMPORT_C void Release();
sl@0
   144
//
sl@0
   145
	IMPORT_C void ResetL(TInt& aCount);
sl@0
   146
	IMPORT_C void NextL(TInt& aStep);
sl@0
   147
	IMPORT_C void Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus);
sl@0
   148
	IMPORT_C void NextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus);
sl@0
   149
	IMPORT_C TInt Next(TInt& aStep);
sl@0
   150
//
sl@0
   151
	inline TInt Available() const;
sl@0
   152
private:
sl@0
   153
	MIncrementalCollector* iCol;
sl@0
   154
	TPckgBuf<TInt> iAvail;
sl@0
   155
	};
sl@0
   156
sl@0
   157
/**
sl@0
   158
 * @publishedAll 
sl@0
   159
 * @released
sl@0
   160
 * Encapsulates an embedded store. 
sl@0
   161
sl@0
   162
The embedded store may contain an arbitrarily complex network of streams, 
sl@0
   163
but is viewed as simply another stream by the embedding store. This means 
sl@0
   164
that the embedded store can dealt with as a single stream for purposes of 
sl@0
   165
copying or deleting.
sl@0
   166
sl@0
   167
Once streams within the embedded store have been committed and closed, they 
sl@0
   168
cannot subsequently be changed, i.e. streams cannot be replaced, deleted, 
sl@0
   169
extended or changed in any way. 
sl@0
   170
sl@0
   171
@see CPersistentStore  
sl@0
   172
*/
sl@0
   173
class CEmbeddedStore : public CPersistentStore
sl@0
   174
	{
sl@0
   175
public:
sl@0
   176
	IMPORT_C static CEmbeddedStore* FromL(RReadStream& aHost);
sl@0
   177
	IMPORT_C static CEmbeddedStore* FromLC(RReadStream& aHost);
sl@0
   178
	IMPORT_C static CEmbeddedStore* NewL(RWriteStream& aHost);
sl@0
   179
	IMPORT_C static CEmbeddedStore* NewLC(RWriteStream& aHost);
sl@0
   180
//
sl@0
   181
	inline static TStreamPos Position(TStreamId anId);
sl@0
   182
//
sl@0
   183
	IMPORT_C void Detach();
sl@0
   184
	inline void Reattach(MStreamBuf* aHost);
sl@0
   185
	inline MStreamBuf* Host() const;
sl@0
   186
	inline TStreamPos Start() const;
sl@0
   187
//
sl@0
   188
	IMPORT_C CEmbeddedStore(MStreamBuf* aHost);
sl@0
   189
	IMPORT_C void MarshalL(RReadStream& aStream);
sl@0
   190
	IMPORT_C void ConstructL(RWriteStream& aStream);
sl@0
   191
	IMPORT_C ~CEmbeddedStore();
sl@0
   192
protected:
sl@0
   193
	IMPORT_C MStreamBuf* DoReadL(TStreamId anId) const;
sl@0
   194
	IMPORT_C MStreamBuf* DoCreateL(TStreamId& anId);
sl@0
   195
private:
sl@0
   196
	IMPORT_C void DoSetRootL(TStreamId anId);
sl@0
   197
	IMPORT_C void DoCommitL();
sl@0
   198
//
sl@0
   199
	static CEmbeddedStore* DoNewLC(MStreamBuf* aHost);
sl@0
   200
private:
sl@0
   201
	__MUTABLE TStreamExchange iHost;
sl@0
   202
	TStreamPos iStart;
sl@0
   203
	};
sl@0
   204
sl@0
   205
/**
sl@0
   206
 * @publishedAll 
sl@0
   207
 * @released
sl@0
   208
 * Dictionary store interface.
sl@0
   209
sl@0
   210
This is an abstract class which provides the necessary interface for using 
sl@0
   211
concrete dictionary stores.
sl@0
   212
sl@0
   213
A dictionary store is a store where a stream is accessed by UID (TUid), rather 
sl@0
   214
than directly by stream id (TStreamId).
sl@0
   215
sl@0
   216
This type of store contains streams in the usual way but, in addition, the 
sl@0
   217
root stream is a stream dictionary. The stream dictionary provides a list 
sl@0
   218
of two-way associations between unique identifiers and stream ids.
sl@0
   219
sl@0
   220
Note that a dictionary store object does not derive from CStreamStore, but 
sl@0
   221
owns a persistent store and a stream dictionary as part of its implementation.
sl@0
   222
sl@0
   223
@see CStreamDictionary
sl@0
   224
@see CPersistentStore
sl@0
   225
@see CDictionaryFileStore
sl@0
   226
@see TUid
sl@0
   227
@see TStreamId  
sl@0
   228
*/
sl@0
   229
class CDictionaryStore : public CBase
sl@0
   230
	{
sl@0
   231
public:
sl@0
   232
	IMPORT_C TBool IsNullL() const;
sl@0
   233
	IMPORT_C TBool IsPresentL(TUid aUid) const;
sl@0
   234
	IMPORT_C void Remove(TUid aUid);
sl@0
   235
	IMPORT_C void RemoveL(TUid aUid);
sl@0
   236
//
sl@0
   237
	IMPORT_C TInt Commit();
sl@0
   238
	IMPORT_C void CommitL();
sl@0
   239
	IMPORT_C void Revert();
sl@0
   240
	IMPORT_C void RevertL();
sl@0
   241
//
sl@0
   242
	IMPORT_C ~CDictionaryStore();
sl@0
   243
protected:
sl@0
   244
	IMPORT_C void ConstructL();
sl@0
   245
private:
sl@0
   246
	CStreamDictionary* DictionaryL() const;
sl@0
   247
	MStreamBuf* GetSourceL(TUid aUid) const;
sl@0
   248
	MStreamBuf* GetSinkL(TUid aUid);
sl@0
   249
protected:
sl@0
   250
	CPersistentStore* iStore;
sl@0
   251
private:
sl@0
   252
	__MUTABLE CStreamDictionary* iDictionary;
sl@0
   253
	TBool iDictionaryHasChanged;
sl@0
   254
private:
sl@0
   255
	friend class RDictionaryReadStream;
sl@0
   256
	friend class RDictionaryWriteStream;
sl@0
   257
	friend class HDictionaryStoreBuf;
sl@0
   258
	};
sl@0
   259
//
sl@0
   260
const TInt KDictionaryCommitThreshold = 1024;
sl@0
   261
sl@0
   262
/**
sl@0
   263
 * @publishedAll 
sl@0
   264
 * @released
sl@0
   265
 * Supports the opening and manipulation of a stream in a dictionary store.
sl@0
   266
sl@0
   267
Construct an object of this type to open an existing stream in a dictionary 
sl@0
   268
store for reading.
sl@0
   269
sl@0
   270
@see CDictionaryStore  
sl@0
   271
*/
sl@0
   272
class RDictionaryReadStream : public RReadStream
sl@0
   273
{
sl@0
   274
public:
sl@0
   275
	IMPORT_C void OpenL(const CDictionaryStore& aDictStore,TUid aUid);
sl@0
   276
	IMPORT_C void OpenLC(const CDictionaryStore& aDictStore,TUid aUid);
sl@0
   277
	};
sl@0
   278
sl@0
   279
/**
sl@0
   280
 * @publishedAll 
sl@0
   281
 * @released
sl@0
   282
 * Supports the creation or replacement of a stream a dictionary store.
sl@0
   283
sl@0
   284
@see CDictionaryStore  
sl@0
   285
*/
sl@0
   286
class RDictionaryWriteStream : public RWriteStream
sl@0
   287
	{
sl@0
   288
public:
sl@0
   289
	/** Constructs an uninitialised object. It is necessary because there are 
sl@0
   290
	also non-default constructors in this class. */
sl@0
   291
	RDictionaryWriteStream() {}
sl@0
   292
	inline RDictionaryWriteStream(const MExternalizer<TStreamRef>& anExter);
sl@0
   293
	IMPORT_C void AssignL(CDictionaryStore& aDictStore,TUid aUid);
sl@0
   294
	IMPORT_C void AssignLC(CDictionaryStore& aDictStore,TUid aUid);
sl@0
   295
	};
sl@0
   296
sl@0
   297
/**
sl@0
   298
 * @publishedAll 
sl@0
   299
 * @released
sl@0
   300
 * Persistent settings to use for a RStorePagePool.
sl@0
   301
sl@0
   302
@see RStorePagePool 
sl@0
   303
*/
sl@0
   304
class TStorePagePoolToken
sl@0
   305
	{
sl@0
   306
public:
sl@0
   307
	/** Provides a TStorePagePoolToken initialisation flag. */
sl@0
   308
	enum TEmpty 
sl@0
   309
		/** Initialise for an empty page pool flag. */
sl@0
   310
		{EEmpty};
sl@0
   311
public:
sl@0
   312
	/** Default constructor. */
sl@0
   313
	TStorePagePoolToken() {}
sl@0
   314
sl@0
   315
	/** Constructor that intialises the TStorePagePoolToken for an empty page pool.
sl@0
   316
	
sl@0
   317
	@param Intialises for an empty page pool */
sl@0
   318
	inline TStorePagePoolToken(TEmpty);
sl@0
   319
	inline void Touch();
sl@0
   320
//
sl@0
   321
	inline TBool HasAvailable() const;
sl@0
   322
	inline TBool IsEmpty() const;
sl@0
   323
//
sl@0
   324
	IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
sl@0
   325
	IMPORT_C void InternalizeL(RReadStream& aStream);
sl@0
   326
private:
sl@0
   327
	inline TStorePagePoolToken(TStreamId aHead,TPageRef anAvail);
sl@0
   328
private:
sl@0
   329
	TStreamId iHead;
sl@0
   330
	TPageRef iAvail;
sl@0
   331
private:
sl@0
   332
	friend class RStorePagePool;
sl@0
   333
	};
sl@0
   334
#if defined(__NO_CLASS_CONSTS__)
sl@0
   335
#define KEmptyStorePagePoolToken TStorePagePoolToken(TStorePagePoolToken::EEmpty)
sl@0
   336
#else
sl@0
   337
/** Defines a TStorePagePoolToken object initialised for an empty page pool. */
sl@0
   338
const TStorePagePoolToken KEmptyStorePagePoolToken=TStorePagePoolToken::EEmpty;
sl@0
   339
#endif
sl@0
   340
sl@0
   341
/**
sl@0
   342
 * @publishedAll 
sl@0
   343
 * @released
sl@0
   344
 * Uses a store to implement the page pool interface MPagePool.
sl@0
   345
sl@0
   346
Pages can be reclaimable (tracked by the page pool, so that they can be freed 
sl@0
   347
when required) or not (in which case they must be deleted explicitly): this 
sl@0
   348
is indicated by a flag of type TPageReclamation. Non-reclaimable pages each 
sl@0
   349
have their own stream in the store; reclaimable pages are bundled 15 to a 
sl@0
   350
stream. To track the reclaimable pages, the page pool has a separate token, 
sl@0
   351
type TStorePagePoolToken, that must be saved by the user of the pool.
sl@0
   352
sl@0
   353
The store used must support CStreamStore::ExtendL(), CStreamStore::DeleteL() 
sl@0
   354
and allow streams to be re-written. CPermanentFileStore meets these conditions.
sl@0
   355
sl@0
   356
A store page pool uses a cache to store pages in-memory and to cache frequently 
sl@0
   357
accessed pages. You should provide a cache object (CPageCache) to the pool 
sl@0
   358
for this purpose.
sl@0
   359
sl@0
   360
@see CPageCache
sl@0
   361
@see CPermanentFileStore
sl@0
   362
@see CStreamStore
sl@0
   363
@see TPageReclamation  
sl@0
   364
*/
sl@0
   365
class RStorePagePool : public TCachePagePool
sl@0
   366
	{
sl@0
   367
	friend class StorePagePool;
sl@0
   368
public:
sl@0
   369
	IMPORT_C RStorePagePool();
sl@0
   370
	IMPORT_C RStorePagePool(CPageCache& aCache);
sl@0
   371
	IMPORT_C RStorePagePool(CStreamStore& aStore);
sl@0
   372
	IMPORT_C RStorePagePool(CStreamStore& aStore,const TStorePagePoolToken& aToken);
sl@0
   373
	IMPORT_C void Create(CStreamStore& aStore);
sl@0
   374
	IMPORT_C void Open(CStreamStore& aStore,const TStorePagePoolToken& aToken);
sl@0
   375
	IMPORT_C TStorePagePoolToken Token() const;
sl@0
   376
	IMPORT_C void Close();
sl@0
   377
	inline void Release();
sl@0
   378
//
sl@0
   379
	inline TBool IsDirty() const;
sl@0
   380
	inline void MarkCurrent();
sl@0
   381
	inline void MarkDirty();
sl@0
   382
//
sl@0
   383
	inline TBool HasAvailable() const;
sl@0
   384
	inline void Discard();
sl@0
   385
//
sl@0
   386
	inline TBool IsEmpty() const;
sl@0
   387
	IMPORT_C TBool ReclaimL();
sl@0
   388
	IMPORT_C void ReclaimAllL();
sl@0
   389
protected:
sl@0
   390
	IMPORT_C TPageRef ExtendL(const TAny* aPage,TPageReclamation aReclamation);
sl@0
   391
	IMPORT_C void WriteL(TPageRef aRef,const TAny* aPage,TPageChange aChange);
sl@0
   392
	IMPORT_C void ReadL(TPageRef aRef,TAny* aPage);
sl@0
   393
	IMPORT_C void DoDeleteL(TPageRef aRef);
sl@0
   394
private:
sl@0
   395
	inline void CacheDeleteL(TPageRef aRef);
sl@0
   396
private:
sl@0
   397
	CStreamStore* iStore;
sl@0
   398
	TStreamId iHead;
sl@0
   399
	TPageRef iAvail;
sl@0
   400
	TBool iDirty;
sl@0
   401
	};
sl@0
   402
sl@0
   403
/**
sl@0
   404
 * @publishedAll 
sl@0
   405
 * @released
sl@0
   406
 * Interface for incrementally reclaiming or compacting space in a stream store. 
sl@0
   407
The interface allows these actions to be performed in small steps, so that 
sl@0
   408
applications can remain responsive while doing these potentially long-running 
sl@0
   409
tasks.
sl@0
   410
sl@0
   411
An instance of a class derived from this interface is returned by 
sl@0
   412
StreamStore::DoReclaimL() and DoCompactL(). Each step is carried out in 
sl@0
   413
response to a call of DoNextL() and the object is released on completion of 
sl@0
   414
the last step.
sl@0
   415
sl@0
   416
Notes:
sl@0
   417
sl@0
   418
One-step reclaim using CStreamStore::ReclaimL() is actually implemented in 
sl@0
   419
terms of the incremental collector.
sl@0
   420
sl@0
   421
A CStreamStore implementation will only need to implement a collector class 
sl@0
   422
if it supports reclamation or compaction.  
sl@0
   423
*/
sl@0
   424
class MIncrementalCollector
sl@0
   425
	{
sl@0
   426
public:
sl@0
   427
	inline void Close();
sl@0
   428
	inline void Release();
sl@0
   429
//
sl@0
   430
	inline void ResetL(TInt& aCount);
sl@0
   431
	inline void NextL(TInt& aStep,TInt& aTotal);
sl@0
   432
	inline void NextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus,TPckgBuf<TInt>& aTotal);
sl@0
   433
protected:
sl@0
   434
	/** Protected constructor. Protecting the constructor ensures that this 
sl@0
   435
	abstract class cannot be instantiated.
sl@0
   436
	
sl@0
   437
	MIncrementalCollector(const MIncrementalCollector&);
sl@0
   438
	
sl@0
   439
	MIncrementalCollector& operator=(const MIncrementalCollector&);
sl@0
   440
	
sl@0
   441
	Private copy constructor and copy assignment to prevent */
sl@0
   442
	MIncrementalCollector() {}
sl@0
   443
private:
sl@0
   444
	/** Protected constructor. Protecting the constructor ensures that this 
sl@0
   445
	abstract class cannot be instantiated.
sl@0
   446
	
sl@0
   447
	MIncrementalCollector(const MIncrementalCollector&);
sl@0
   448
	
sl@0
   449
	MIncrementalCollector& operator=(const MIncrementalCollector&);
sl@0
   450
	
sl@0
   451
	Private copy constructor and copy assignment to prevent */
sl@0
   452
	MIncrementalCollector(const MIncrementalCollector&);
sl@0
   453
	MIncrementalCollector& operator=(const MIncrementalCollector&);
sl@0
   454
//
sl@0
   455
	virtual IMPORT_C void DoRelease();
sl@0
   456
	
sl@0
   457
	/** Implementation of the public ResetL() function. This signals that the 
sl@0
   458
	client wants to start or retsart the operation from the beginning. A new 
sl@0
   459
	progress count should be returned in aCount.
sl@0
   460
	
sl@0
   461
	@param aCount On return, contains a progress count for the 
sl@0
   462
	reclamation/compaction 	process. */
sl@0
   463
	virtual void DoResetL(TInt& aCount)=0;
sl@0
   464
sl@0
   465
	/** Implementation of the public synchronous NextL() function. The next 
sl@0
   466
	step in the reclamation should be done, reporting progress in aStep and 
sl@0
   467
	aTotal.
sl@0
   468
	
sl@0
   469
	@param aStep The progress value from either the last NextL() increment of 
sl@0
   470
	from ResetL() if the reclamation/compaction was restarted. On return, 
sl@0
   471
	should contain the new progress value, which can be used in subsequent 
sl@0
   472
	calls to NextL(). This must be equal to, or less than, the previous 
sl@0
   473
	value — a zero value must be used to indicate that the operation is 
sl@0
   474
	complete.
sl@0
   475
	@param aTotal On return, should contain the total amount of free space in 
sl@0
   476
	the store. */
sl@0
   477
	virtual void DoNextL(TInt& aStep,TInt& aTotal)=0;
sl@0
   478
	virtual IMPORT_C void DoNextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus,TPckgBuf<TInt>& aTotal);
sl@0
   479
	};
sl@0
   480
sl@0
   481
#include <s32stor.inl>
sl@0
   482
#endif