os/persistentdata/persistentstorage/store/INC/S32MEM.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(__S32MEM_H__)
sl@0
    17
#define __S32MEM_H__
sl@0
    18
#if !defined(__S32BUF_H__)
sl@0
    19
#include <s32buf.h>
sl@0
    20
#endif
sl@0
    21
#if !defined(__S32STOR_H__)
sl@0
    22
#include <s32stor.h>
sl@0
    23
#endif
sl@0
    24
sl@0
    25
/**
sl@0
    26
 * @publishedAll
sl@0
    27
 * @released
sl@0
    28
 * A stream buffer that uses plain memory for its implementation.
sl@0
    29
sl@0
    30
A stream of this type is used by RMemWriteStream and RMemReadStream objects.
sl@0
    31
It also has intermediate buffering capabilities.
sl@0
    32
sl@0
    33
This is a seekable stream buffer.
sl@0
    34
sl@0
    35
@see RMemWriteStream
sl@0
    36
@see RMemReadStream
sl@0
    37
*/
sl@0
    38
class TMemBuf : public TStreamBuf
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	IMPORT_C TMemBuf();
sl@0
    42
	IMPORT_C void Set(TUint8* aPtr,TUint8* anEnd,TInt aMode=ERead|EWrite);
sl@0
    43
protected:
sl@0
    44
	IMPORT_C TInt UnderflowL(TInt aMaxLength);
sl@0
    45
	IMPORT_C void OverflowL();
sl@0
    46
	IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
sl@0
    47
private:
sl@0
    48
	inline TUint8* Base() const;
sl@0
    49
	inline TUint8* End() const;
sl@0
    50
private:
sl@0
    51
	TUint8* iBase;
sl@0
    52
	};
sl@0
    53
sl@0
    54
/**
sl@0
    55
 * @publishedAll
sl@0
    56
 * @released
sl@0
    57
 * A stream buffer that uses a descriptor for its implementation.
sl@0
    58
sl@0
    59
A stream of this type is used by RDesWriteStream and RDesReadStream objects.
sl@0
    60
It also has intermediate buffering capabilities.
sl@0
    61
sl@0
    62
This is a seekable stream buffer.
sl@0
    63
sl@0
    64
When used in write mode, the length of the descriptor is only updated when
sl@0
    65
the stream buffer's SynchL() function is called, i.e. as a result of a call
sl@0
    66
to RWriteStream::CommitL().
sl@0
    67
sl@0
    68
@see RDesWriteStream
sl@0
    69
@see RDesReadStream
sl@0
    70
@see RWriteStream::CommitL()
sl@0
    71
@see MStreamBuf::SynchL()
sl@0
    72
*/
sl@0
    73
class TDesBuf : public TStreamBuf
sl@0
    74
	{
sl@0
    75
public:
sl@0
    76
	IMPORT_C TDesBuf();
sl@0
    77
	IMPORT_C void Set(TDes8& aDes,TInt aMode=ERead|EWrite);
sl@0
    78
protected:
sl@0
    79
	IMPORT_C TInt UnderflowL(TInt aMaxLength);
sl@0
    80
	IMPORT_C void OverflowL();
sl@0
    81
	IMPORT_C void DoSynchL();
sl@0
    82
	IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
sl@0
    83
private:
sl@0
    84
	inline TDes8& Des() const;
sl@0
    85
	inline TUint8* Base() const;
sl@0
    86
 	void Consolidate();
sl@0
    87
private:
sl@0
    88
	TDes8* iDes;
sl@0
    89
	};
sl@0
    90
sl@0
    91
/**
sl@0
    92
 * @publishedAll
sl@0
    93
 * @released
sl@0
    94
 * A stream buffer that uses a dynamic buffer for its implementation.
sl@0
    95
sl@0
    96
A stream of this type is used by RBufWriteStream and RBufReadStream objects.
sl@0
    97
It also has intermediate buffering capabilities.
sl@0
    98
sl@0
    99
This is a seekable stream buffer.
sl@0
   100
sl@0
   101
There are three write modes:
sl@0
   102
sl@0
   103
insert mode - inserts new data into the buffer at the offset passed to Set()
sl@0
   104
sl@0
   105
overwrite mode - replaces the data in the buffer starting at the offset passed
sl@0
   106
to Set(). Once the end of the buffer is reached, it is automatically extended
sl@0
   107
as more data is written. This is the default mode.
sl@0
   108
sl@0
   109
truncate mode - truncates the buffer to the offset passed to Set() before
sl@0
   110
data is written, extending the buffer. When writing, the buffer size as reported
sl@0
   111
by CBufBase::Size() may be larger than the data written to the stream. To
sl@0
   112
synchronise the buffer's reported size with the stream, call the MStreamBuf::SynchL()
sl@0
   113
function.
sl@0
   114
sl@0
   115
Note that this object never takes ownership of the dynamic buffer, the CBufBase
sl@0
   116
type object.
sl@0
   117
sl@0
   118
@see RBufWriteStream
sl@0
   119
@see RBufReadStream
sl@0
   120
@see CBufBase::Size()
sl@0
   121
@see MStreamBuf::SynchL()
sl@0
   122
*/
sl@0
   123
class TBufBuf : public TStreamBuf
sl@0
   124
	{
sl@0
   125
public:
sl@0
   126
	enum {ETruncate=0x10,EInsert=0x20};
sl@0
   127
public:
sl@0
   128
	IMPORT_C TBufBuf();
sl@0
   129
	IMPORT_C void Set(CBufBase& aBuf,TInt aPos,TInt aMode=ERead|EWrite);
sl@0
   130
protected:
sl@0
   131
	IMPORT_C TInt UnderflowL(TInt aMaxLength);
sl@0
   132
	IMPORT_C void OverflowL();
sl@0
   133
	IMPORT_C void DoSynchL();
sl@0
   134
	IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength);
sl@0
   135
	IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
sl@0
   136
private:
sl@0
   137
	inline CBufBase& Buf() const;
sl@0
   138
 	void Consolidate();
sl@0
   139
//
sl@0
   140
	void SetPos(TMark aMark,TInt aPos);
sl@0
   141
	inline void SetPos(TRead,TInt aPos);
sl@0
   142
	inline void SetPos(TWrite,TInt aPos);
sl@0
   143
	TInt Pos(TMark aMark) const;
sl@0
   144
	inline TInt Pos(TRead) const;
sl@0
   145
	inline TInt Pos(TWrite) const;
sl@0
   146
	inline TInt MovePos(TRead,TInt anOffset);
sl@0
   147
	inline TInt MovePos(TWrite,TInt anOffset);
sl@0
   148
	inline TInt Mark(TRead) const;
sl@0
   149
	inline TInt Mark(TWrite) const;
sl@0
   150
private:
sl@0
   151
	CBufBase* iBuf;
sl@0
   152
	TInt iRPos;
sl@0
   153
	TInt iWPos;
sl@0
   154
	TInt iMode;
sl@0
   155
	};
sl@0
   156
sl@0
   157
/**
sl@0
   158
@publishedAll
sl@0
   159
@released
sl@0
   160
sl@0
   161
Supports the reading of a stream from a pointer of any type.
sl@0
   162
sl@0
   163
@see TMemBuf
sl@0
   164
@see RReadStream
sl@0
   165
 */
sl@0
   166
class RMemReadStream : public RReadStream
sl@0
   167
	{
sl@0
   168
public:
sl@0
   169
/**
sl@0
   170
Constructs an empty object.
sl@0
   171
sl@0
   172
Call Open() to prepare the stream for reading.
sl@0
   173
*/
sl@0
   174
	RMemReadStream() {}
sl@0
   175
	IMPORT_C RMemReadStream(const TAny* aPtr,TInt aLength);
sl@0
   176
	IMPORT_C void Open(const TAny* aPtr,TInt aLength);
sl@0
   177
private:
sl@0
   178
	TMemBuf iSource;
sl@0
   179
	};
sl@0
   180
sl@0
   181
/**
sl@0
   182
@publishedAll
sl@0
   183
@released
sl@0
   184
sl@0
   185
Supports the writing of a stream to a pointer of any type.
sl@0
   186
sl@0
   187
@see TMemBuf
sl@0
   188
@see RWriteStream
sl@0
   189
 */
sl@0
   190
class RMemWriteStream : public RWriteStream
sl@0
   191
	{
sl@0
   192
public:
sl@0
   193
/**
sl@0
   194
Constructs an empty write stream object.
sl@0
   195
sl@0
   196
Call Open() to prepare a stream for writing.
sl@0
   197
*/
sl@0
   198
	RMemWriteStream() {}
sl@0
   199
	inline RMemWriteStream(const MExternalizer<TStreamRef>& anExter);
sl@0
   200
	IMPORT_C RMemWriteStream(TAny* aPtr,TInt aMaxLength);
sl@0
   201
	IMPORT_C void Open(TAny* aPtr,TInt aMaxLength);
sl@0
   202
private:
sl@0
   203
	TMemBuf iSink;
sl@0
   204
	};
sl@0
   205
sl@0
   206
/**
sl@0
   207
@publishedAll
sl@0
   208
@released
sl@0
   209
sl@0
   210
Supports the reading of a stream from an 8-bit descriptor.
sl@0
   211
sl@0
   212
@see TMemBuf
sl@0
   213
@see RReadStream
sl@0
   214
*/
sl@0
   215
class RDesReadStream : public RReadStream
sl@0
   216
	{
sl@0
   217
public:
sl@0
   218
/**
sl@0
   219
Constructs an empty read stream object.
sl@0
   220
sl@0
   221
Call Open() to prepare the stream for reading.
sl@0
   222
*/
sl@0
   223
	RDesReadStream() {}
sl@0
   224
	IMPORT_C RDesReadStream(const TDesC8& aDes);
sl@0
   225
	IMPORT_C void Open(const TDesC8& aDes);
sl@0
   226
private:
sl@0
   227
	TMemBuf iSource;
sl@0
   228
	};
sl@0
   229
sl@0
   230
/**
sl@0
   231
@publishedAll
sl@0
   232
@released
sl@0
   233
sl@0
   234
Supports the writing of a stream to a stream buffer hosted by an 8-bit descriptor.
sl@0
   235
sl@0
   236
@see TDesBuf
sl@0
   237
@see RWriteStream
sl@0
   238
 */
sl@0
   239
class RDesWriteStream : public RWriteStream
sl@0
   240
	{
sl@0
   241
public:
sl@0
   242
/**
sl@0
   243
Constructs an empty write stream object.
sl@0
   244
sl@0
   245
Call Open() to prepare a stream for writing.
sl@0
   246
*/
sl@0
   247
	RDesWriteStream() {}
sl@0
   248
	inline RDesWriteStream(const MExternalizer<TStreamRef>& anExter);
sl@0
   249
	IMPORT_C RDesWriteStream(TDes8& aDes);
sl@0
   250
	IMPORT_C void Open(TDes8& aDes);
sl@0
   251
private:
sl@0
   252
	TDesBuf iSink;
sl@0
   253
	};
sl@0
   254
sl@0
   255
/**
sl@0
   256
@publishedAll
sl@0
   257
@released
sl@0
   258
sl@0
   259
Supports the opening of an existing stream hosted by a dynamic buffer.
sl@0
   260
The stream does not take ownership of the dynamic buffer, which means
sl@0
   261
that the creator is responsible for deleting the buffer when it is no
sl@0
   262
longer needed.
sl@0
   263
sl@0
   264
@see TBufBuf
sl@0
   265
@see RReadStream
sl@0
   266
*/
sl@0
   267
class RBufReadStream : public RReadStream
sl@0
   268
	{
sl@0
   269
public:
sl@0
   270
/**
sl@0
   271
Constructs an empty read stream object.
sl@0
   272
sl@0
   273
Call Open() to prepare the stream for reading.
sl@0
   274
*/
sl@0
   275
	RBufReadStream() {}
sl@0
   276
	IMPORT_C RBufReadStream(const CBufBase& aBuf,TInt aPos=0);
sl@0
   277
	IMPORT_C void Open(const CBufBase& aBuf,TInt aPos=0);
sl@0
   278
private:
sl@0
   279
	TBufBuf iSource;
sl@0
   280
	};
sl@0
   281
sl@0
   282
/**
sl@0
   283
@publishedAll
sl@0
   284
@released
sl@0
   285
sl@0
   286
Supports the writing of a stream to a dynamic buffer.  The stream does
sl@0
   287
not take ownership of the dynamic buffer, which means that the creator
sl@0
   288
is responsible for deleting the buffer when it is no longer needed.
sl@0
   289
sl@0
   290
@see TBufBuf
sl@0
   291
@see RWriteStream
sl@0
   292
 */
sl@0
   293
class RBufWriteStream : public RWriteStream
sl@0
   294
	{
sl@0
   295
public:
sl@0
   296
/**
sl@0
   297
Default constructor.  Constructs an empty write stream object.
sl@0
   298
sl@0
   299
Call Open(), Truncate() or Insert() to prepare a stream for writing.
sl@0
   300
*/
sl@0
   301
	RBufWriteStream() {}
sl@0
   302
sl@0
   303
	inline RBufWriteStream(const MExternalizer<TStreamRef>& anExter);
sl@0
   304
	IMPORT_C RBufWriteStream(CBufBase& aBuf,TInt aPos=0);
sl@0
   305
	IMPORT_C void Open(CBufBase& aBuf,TInt aPos=0);
sl@0
   306
	IMPORT_C void Truncate(CBufBase& aBuf,TInt aPos=0);
sl@0
   307
	IMPORT_C void Insert(CBufBase& aBuf,TInt aPos);
sl@0
   308
	inline void Append(CBufBase& aBuf);
sl@0
   309
private:
sl@0
   310
	TBufBuf iSink;
sl@0
   311
	};
sl@0
   312
sl@0
   313
/**
sl@0
   314
 * @publishedAll
sl@0
   315
 * @released
sl@0
   316
 * In-memory non-persistent store. The buffer store does not have a root stream
sl@0
   317
and cannot be closed without losing all the data.
sl@0
   318
sl@0
   319
It implements many of the operations defined by the store abstract framework.
sl@0
   320
Specifically, streams in this store can be: overwritten, replaced, appended,
sl@0
   321
deleted, and created in advance of being written to. However the class does
sl@0
   322
not support commit and revert operations.
sl@0
   323
sl@0
   324
Overwriting an existing stream can result in a shorter stream; however, a
sl@0
   325
stream cannot be extended beyond its original length. Replacing a stream can
sl@0
   326
result in a stream which is longer or shorter than the original. The order
sl@0
   327
in which streams are written to a memory store is not important as streams
sl@0
   328
can be changed and rewritten.
sl@0
   329
*/
sl@0
   330
class CBufStore : public CStreamStore
sl@0
   331
	{
sl@0
   332
public:
sl@0
   333
	IMPORT_C static CBufStore* NewL(TInt anExpandSize);
sl@0
   334
	IMPORT_C static CBufStore* NewLC(TInt anExpandSize);
sl@0
   335
	IMPORT_C CBufStore(TInt anExpandSize);
sl@0
   336
	IMPORT_C ~CBufStore();
sl@0
   337
protected:
sl@0
   338
	IMPORT_C TStreamId DoExtendL();
sl@0
   339
	IMPORT_C void DoDeleteL(TStreamId anId);
sl@0
   340
	IMPORT_C MStreamBuf* DoReadL(TStreamId anId) const;
sl@0
   341
	IMPORT_C MStreamBuf* DoCreateL(TStreamId& anId);
sl@0
   342
	IMPORT_C MStreamBuf* DoWriteL(TStreamId anId);
sl@0
   343
	IMPORT_C MStreamBuf* DoReplaceL(TStreamId anId);
sl@0
   344
private:
sl@0
   345
	CBufSeg& BufL(TStreamId anId) const;
sl@0
   346
private:
sl@0
   347
	CArrayFixFlat<CBufSeg*> iBufArray;
sl@0
   348
	TInt iExpandSize;
sl@0
   349
	};
sl@0
   350
sl@0
   351
#include <s32mem.inl>
sl@0
   352
#endif