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