os/persistentdata/persistentstorage/store/INC/S32SHARE.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
#ifndef __S32SHARE_H__
sl@0
    17
#define __S32SHARE_H__
sl@0
    18
sl@0
    19
#include <s32buf.h>
sl@0
    20
#include <s32strm.h>
sl@0
    21
sl@0
    22
class TStreamExchange;
sl@0
    23
/**
sl@0
    24
 * @publishedAll 
sl@0
    25
 * @released
sl@0
    26
 * Manages the position of a read mark or a write mark within a shared stream.
sl@0
    27
sl@0
    28
A shared stream is one that shares its host with other streams. In practice, 
sl@0
    29
the host is a stream buffer that is, itself, hosted by a file, an RFileBuf 
sl@0
    30
object. 
sl@0
    31
sl@0
    32
TStreamMark objects are owned by RShareBuf, one for reading and one for writing. 
sl@0
    33
They re-direct read/write operations through a TStreamExchange object to the 
sl@0
    34
RFileBuf object, which handles the actual file read and write operations.
sl@0
    35
sl@0
    36
@see RFileBuf
sl@0
    37
@see RShareBuf
sl@0
    38
@see TStreamExchange  
sl@0
    39
*/
sl@0
    40
class TStreamMark
sl@0
    41
	{
sl@0
    42
public:
sl@0
    43
	inline TStreamMark();
sl@0
    44
	inline TStreamMark(TStreamPos aPos);
sl@0
    45
	inline TStreamMark& operator=(TStreamPos aPos);
sl@0
    46
	inline operator TStreamMark*();
sl@0
    47
	inline operator const TStreamMark*() const;
sl@0
    48
//
sl@0
    49
	inline TBool operator==(const TStreamMark& aMark) const;
sl@0
    50
	inline TBool operator==(const TStreamMark* aPtr) const;
sl@0
    51
	inline TBool operator!=(const TStreamMark& aMark) const;
sl@0
    52
	inline TBool operator!=(const TStreamMark* aPtr) const;
sl@0
    53
//
sl@0
    54
	inline TBool IsEmpty() const;
sl@0
    55
	inline void Clear();
sl@0
    56
	inline TStreamPos Position() const;
sl@0
    57
//
sl@0
    58
	inline TBool IsWith(TStreamExchange& aHost) const;
sl@0
    59
	inline TBool RelatesTo(TStreamExchange& aHost) const;
sl@0
    60
	inline void Withdraw(TStreamExchange& aHost);
sl@0
    61
	inline void ExtractL(TStreamExchange& aHost);
sl@0
    62
//
sl@0
    63
	inline TInt ReadL(TStreamExchange& aHost,TAny* aPtr,TInt aMaxLength);
sl@0
    64
	IMPORT_C TInt ReadL(TStreamExchange& aHost,TDes8& aDes,TRequestStatus& aStatus);
sl@0
    65
	inline TInt ReadL(TStreamExchange& aHost,TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
sl@0
    66
	inline TStreamTransfer ReadL(TStreamExchange& aHost,MStreamInput& anInput,TStreamTransfer aTransfer);
sl@0
    67
	inline TInt ReadL(TStreamExchange& aHost,MStreamInput& anInput,TInt aMaxLength);
sl@0
    68
	inline void ReadL(TStreamExchange& aHost,MStreamInput& anInput);
sl@0
    69
//
sl@0
    70
	inline void WriteL(TStreamExchange& aHost,const TAny* aPtr,TInt aLength);
sl@0
    71
	IMPORT_C TInt WriteL(TStreamExchange& aHost,const TDesC8& aDes,TRequestStatus& aStatus);
sl@0
    72
	inline TInt WriteL(TStreamExchange& aHost,const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
sl@0
    73
	inline TStreamTransfer WriteL(TStreamExchange& aHost,MStreamOutput& anOutput,TStreamTransfer aTransfer);
sl@0
    74
	inline TInt WriteL(TStreamExchange& aHost,MStreamOutput& anOutput,TInt aMaxLength);
sl@0
    75
	inline void WriteL(TStreamExchange& aHost,MStreamOutput& anOutput);
sl@0
    76
//
sl@0
    77
	inline void SeekL(TStreamExchange& aHost,TStreamPos aPos);
sl@0
    78
	inline TStreamPos SeekL(TStreamExchange& aHost,TStreamLocation aLocation,TInt anOffset=0);
sl@0
    79
	inline TStreamPos SeekL(TStreamExchange& aHost,TInt anOffset);
sl@0
    80
//
sl@0
    81
	inline TStreamPos TellL(TStreamExchange& aHost) const;
sl@0
    82
private:
sl@0
    83
	/** Constructs a default shared stream mark object.
sl@0
    84
	
sl@0
    85
	The position for the mark is uninitialised.
sl@0
    86
	
sl@0
    87
	An uninitialised mark means that a call to IsEmpty() returns true.
sl@0
    88
	
sl@0
    89
	@see IsEmpty() */
sl@0
    90
	TStreamMark(const TStreamMark&);
sl@0
    91
	TStreamMark& operator=(const TStreamMark&);
sl@0
    92
private:
sl@0
    93
	TStreamPos iPos;
sl@0
    94
private:
sl@0
    95
	inline TBool IsTracking(TStreamMark*const& aRef) const;
sl@0
    96
	inline void Track(TStreamMark*const& aRef);
sl@0
    97
private:
sl@0
    98
	friend class TStreamExchange;
sl@0
    99
private:
sl@0
   100
	IMPORT_C static void __DbgChkPos(TStreamPos aPos);
sl@0
   101
	};
sl@0
   102
sl@0
   103
/**
sl@0
   104
 * @publishedAll 
sl@0
   105
 * @released
sl@0
   106
 * Manages access to a shared host buffer for shared stream buffers.
sl@0
   107
sl@0
   108
The class maintains independent markers for the shared stream buffer that 
sl@0
   109
has most recently read or written to the shared host buffer.
sl@0
   110
sl@0
   111
This is the way in which multiple requests from the same shared stream buffer 
sl@0
   112
are handled without the need for repeated seeking. The shared host buffer 
sl@0
   113
only needs to seek when a new shared buffer needs to use it
sl@0
   114
sl@0
   115
@see RShareBuf  
sl@0
   116
*/
sl@0
   117
class TStreamExchange
sl@0
   118
	{
sl@0
   119
public:
sl@0
   120
	inline TStreamExchange();
sl@0
   121
	inline TStreamExchange(MStreamBuf* aHost);
sl@0
   122
	inline void Share(MStreamBuf* aHost);
sl@0
   123
	inline TBool IsActive() const;
sl@0
   124
	IMPORT_C MStreamBuf* Host();
sl@0
   125
	IMPORT_C MStreamBuf* HostL();
sl@0
   126
	IMPORT_C void Release();
sl@0
   127
//
sl@0
   128
	IMPORT_C TInt SizeL() const;
sl@0
   129
private:
sl@0
   130
/** Used to identify the type of mark in a stream.
sl@0
   131
sl@0
   132
The type is used by functions of this class and derived classes that perform 
sl@0
   133
seek operations to marks within a stream.
sl@0
   134
sl@0
   135
The type uses the ERead and EWrite enumeration values, as bit flags, to identify 
sl@0
   136
the read and write marks respectively.
sl@0
   137
sl@0
   138
ERead is an MStreamBuf::TRead enumerator. EWrite is an MStreamBuf::EWrite 
sl@0
   139
enumerator.
sl@0
   140
sl@0
   141
@see MStreamBuf::TRead
sl@0
   142
@see MStreamBuf::TWrite */
sl@0
   143
	typedef MStreamBuf::TMark TMark;
sl@0
   144
private:
sl@0
   145
	/** Constructs an empty object.
sl@0
   146
	
sl@0
   147
	Call Share() to prepare for access to a shared stream buffer. */
sl@0
   148
	TStreamExchange(const TStreamExchange&);
sl@0
   149
	TStreamExchange& operator=(const TStreamExchange&);
sl@0
   150
//
sl@0
   151
	IMPORT_C TBool RefersTo(const TStreamMark& aMark);
sl@0
   152
	IMPORT_C void Drop(const TStreamMark& aMark);
sl@0
   153
	IMPORT_C void GetL(TStreamMark& aMark);
sl@0
   154
	IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength,TStreamMark& aMark);
sl@0
   155
	IMPORT_C TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark);
sl@0
   156
	IMPORT_C TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer,TStreamMark& aMark);
sl@0
   157
	IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength,TStreamMark& aMark);
sl@0
   158
	IMPORT_C TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark);
sl@0
   159
	IMPORT_C TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer,TStreamMark& aMark);
sl@0
   160
	IMPORT_C TStreamPos DoSeekL(TStreamMark& aMark,TStreamLocation aLocation,TInt anOffset);
sl@0
   161
//
sl@0
   162
	void PrepareForReadingL(TStreamMark& aMark);
sl@0
   163
	void PrepareForWritingL(TStreamMark& aMark);
sl@0
   164
//
sl@0
   165
	TInt PrepareAndReadL(TAny* aPtr,TInt aMaxLength,TStreamMark& aMark);
sl@0
   166
	TInt PrepareAndReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark);
sl@0
   167
	TStreamTransfer PrepareAndReadL(MStreamInput& anInput,TStreamTransfer aTransfer,TStreamMark& aMark);
sl@0
   168
	void PrepareAndWriteL(const TAny* aPtr,TInt aLength,TStreamMark& aMark);
sl@0
   169
	TInt PrepareAndWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark);
sl@0
   170
	TStreamTransfer PrepareAndWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer,TStreamMark& aMark);
sl@0
   171
	TStreamPos MarkSeekL(TStreamMark& aMark,TStreamLocation aLocation,TInt anOffset);
sl@0
   172
//
sl@0
   173
	inline MStreamBuf& BufL() const;
sl@0
   174
	inline MStreamBuf& Buf() const;
sl@0
   175
private:
sl@0
   176
	MStreamBuf* iHost;
sl@0
   177
	TStreamMark* iRMrk;
sl@0
   178
	TStreamMark* iWMrk;
sl@0
   179
private:
sl@0
   180
	friend class TStreamMark;
sl@0
   181
	};
sl@0
   182
sl@0
   183
/**
sl@0
   184
 * @publishedAll 
sl@0
   185
 * @released
sl@0
   186
 * A shared stream buffer.
sl@0
   187
sl@0
   188
This class is part of the framework used by CFileStore that allows multiple 
sl@0
   189
stream buffers to concurrently access the single hosting file buffer, an RFileBuf 
sl@0
   190
object.
sl@0
   191
sl@0
   192
Each shared stream buffer maintains its own read and write positions.
sl@0
   193
sl@0
   194
Read and write operations to RShareBuf are directed through separate TStreamMark 
sl@0
   195
objects, one for read and one for write. The TStreamMark objects re-direct 
sl@0
   196
read/write operations through a TStreamExchange object to the RFileBuf object, 
sl@0
   197
which handles the actual file read and write operations. 
sl@0
   198
sl@0
   199
This stream buffer can also be accessed through RShareReadStream and RShareWriteStream 
sl@0
   200
objects.
sl@0
   201
sl@0
   202
@see TStreamMark
sl@0
   203
@see TStreamExchange
sl@0
   204
@see RFileBuf
sl@0
   205
@see RShareReadStream
sl@0
   206
@see RShareWriteStream  
sl@0
   207
*/
sl@0
   208
class RShareBuf : public MStreamBuf
sl@0
   209
	{
sl@0
   210
public:
sl@0
   211
	IMPORT_C RShareBuf();
sl@0
   212
	IMPORT_C void Open(TStreamExchange& aHost,TStreamPos aPos,TInt aMode=ERead|EWrite);
sl@0
   213
	inline void Open(TStreamExchange& aHost,TInt aMode=ERead|EWrite);
sl@0
   214
protected:
sl@0
   215
	IMPORT_C void DoRelease();
sl@0
   216
	IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength);
sl@0
   217
	IMPORT_C TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
sl@0
   218
	IMPORT_C TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer);
sl@0
   219
	IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength);
sl@0
   220
	IMPORT_C TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
sl@0
   221
	IMPORT_C TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer);
sl@0
   222
	IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
sl@0
   223
private:
sl@0
   224
	inline TStreamExchange& Host() const;
sl@0
   225
private:
sl@0
   226
	TStreamExchange* iHost;
sl@0
   227
	TStreamMark iRMark;
sl@0
   228
	TStreamMark iWMark;
sl@0
   229
	};
sl@0
   230
sl@0
   231
/**
sl@0
   232
 * @publishedAll 
sl@0
   233
 * @released
sl@0
   234
 * Supports the opening, for reading, of a stream which shares its host with other 
sl@0
   235
streams.
sl@0
   236
sl@0
   237
This is also called a shared read stream.
sl@0
   238
sl@0
   239
The class uses a RShareBuf stream buffer.
sl@0
   240
sl@0
   241
@see RShareBuf
sl@0
   242
@see RFileBuf  
sl@0
   243
*/
sl@0
   244
class RShareReadStream : public RReadStream
sl@0
   245
	{
sl@0
   246
public:
sl@0
   247
	/** Constructs an empty shared read stream object.
sl@0
   248
	
sl@0
   249
	Call Open() to prepare the shared stream for reading.
sl@0
   250
	
sl@0
   251
	@see RShareReadStream::Open() */
sl@0
   252
	RShareReadStream() {}
sl@0
   253
	IMPORT_C RShareReadStream(TStreamExchange& aHost,TStreamPos aPos=KStreamBeginning);
sl@0
   254
	IMPORT_C void Open(TStreamExchange& aHost,TStreamPos aPos=KStreamBeginning);
sl@0
   255
private:
sl@0
   256
	RShareBuf iSource;
sl@0
   257
	};
sl@0
   258
sl@0
   259
/**
sl@0
   260
 * @publishedAll 
sl@0
   261
 * @released
sl@0
   262
 * Supports the opening, for writing, of a stream which shares its host with other 
sl@0
   263
streams.
sl@0
   264
sl@0
   265
This is also called a shared write stream.
sl@0
   266
sl@0
   267
The class uses a RShareBuf stream buffer.
sl@0
   268
sl@0
   269
@see RShareBuf
sl@0
   270
@see RFileBuf  
sl@0
   271
*/
sl@0
   272
class RShareWriteStream : public RWriteStream
sl@0
   273
	{
sl@0
   274
public:
sl@0
   275
	/** Constructs an empty shared write stream object.
sl@0
   276
	
sl@0
   277
	Call Open() to prepare the shared stream for writing.
sl@0
   278
	
sl@0
   279
	@see RShareWriteStream::Open() */
sl@0
   280
	RShareWriteStream() {}
sl@0
   281
	inline RShareWriteStream(const MExternalizer<TStreamRef>& anExter);
sl@0
   282
	IMPORT_C RShareWriteStream(TStreamExchange& aHost,TStreamPos aPos=KStreamBeginning);
sl@0
   283
	IMPORT_C void Open(TStreamExchange& aHost,TStreamPos aPos=KStreamBeginning);
sl@0
   284
private:
sl@0
   285
	RShareBuf iSink;
sl@0
   286
	};
sl@0
   287
sl@0
   288
#include <s32share.inl>
sl@0
   289
#endif