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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __S32SHARE_H__
17 #define __S32SHARE_H__
22 class TStreamExchange;
26 * Manages the position of a read mark or a write mark within a shared stream.
28 A shared stream is one that shares its host with other streams. In practice,
29 the host is a stream buffer that is, itself, hosted by a file, an RFileBuf
32 TStreamMark objects are owned by RShareBuf, one for reading and one for writing.
33 They re-direct read/write operations through a TStreamExchange object to the
34 RFileBuf object, which handles the actual file read and write operations.
44 inline TStreamMark(TStreamPos aPos);
45 inline TStreamMark& operator=(TStreamPos aPos);
46 inline operator TStreamMark*();
47 inline operator const TStreamMark*() const;
49 inline TBool operator==(const TStreamMark& aMark) const;
50 inline TBool operator==(const TStreamMark* aPtr) const;
51 inline TBool operator!=(const TStreamMark& aMark) const;
52 inline TBool operator!=(const TStreamMark* aPtr) const;
54 inline TBool IsEmpty() const;
56 inline TStreamPos Position() const;
58 inline TBool IsWith(TStreamExchange& aHost) const;
59 inline TBool RelatesTo(TStreamExchange& aHost) const;
60 inline void Withdraw(TStreamExchange& aHost);
61 inline void ExtractL(TStreamExchange& aHost);
63 inline TInt ReadL(TStreamExchange& aHost,TAny* aPtr,TInt aMaxLength);
64 IMPORT_C TInt ReadL(TStreamExchange& aHost,TDes8& aDes,TRequestStatus& aStatus);
65 inline TInt ReadL(TStreamExchange& aHost,TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
66 inline TStreamTransfer ReadL(TStreamExchange& aHost,MStreamInput& anInput,TStreamTransfer aTransfer);
67 inline TInt ReadL(TStreamExchange& aHost,MStreamInput& anInput,TInt aMaxLength);
68 inline void ReadL(TStreamExchange& aHost,MStreamInput& anInput);
70 inline void WriteL(TStreamExchange& aHost,const TAny* aPtr,TInt aLength);
71 IMPORT_C TInt WriteL(TStreamExchange& aHost,const TDesC8& aDes,TRequestStatus& aStatus);
72 inline TInt WriteL(TStreamExchange& aHost,const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
73 inline TStreamTransfer WriteL(TStreamExchange& aHost,MStreamOutput& anOutput,TStreamTransfer aTransfer);
74 inline TInt WriteL(TStreamExchange& aHost,MStreamOutput& anOutput,TInt aMaxLength);
75 inline void WriteL(TStreamExchange& aHost,MStreamOutput& anOutput);
77 inline void SeekL(TStreamExchange& aHost,TStreamPos aPos);
78 inline TStreamPos SeekL(TStreamExchange& aHost,TStreamLocation aLocation,TInt anOffset=0);
79 inline TStreamPos SeekL(TStreamExchange& aHost,TInt anOffset);
81 inline TStreamPos TellL(TStreamExchange& aHost) const;
83 /** Constructs a default shared stream mark object.
85 The position for the mark is uninitialised.
87 An uninitialised mark means that a call to IsEmpty() returns true.
90 TStreamMark(const TStreamMark&);
91 TStreamMark& operator=(const TStreamMark&);
95 inline TBool IsTracking(TStreamMark*const& aRef) const;
96 inline void Track(TStreamMark*const& aRef);
98 friend class TStreamExchange;
100 IMPORT_C static void __DbgChkPos(TStreamPos aPos);
106 * Manages access to a shared host buffer for shared stream buffers.
108 The class maintains independent markers for the shared stream buffer that
109 has most recently read or written to the shared host buffer.
111 This is the way in which multiple requests from the same shared stream buffer
112 are handled without the need for repeated seeking. The shared host buffer
113 only needs to seek when a new shared buffer needs to use it
117 class TStreamExchange
120 inline TStreamExchange();
121 inline TStreamExchange(MStreamBuf* aHost);
122 inline void Share(MStreamBuf* aHost);
123 inline TBool IsActive() const;
124 IMPORT_C MStreamBuf* Host();
125 IMPORT_C MStreamBuf* HostL();
126 IMPORT_C void Release();
128 IMPORT_C TInt SizeL() const;
130 /** Used to identify the type of mark in a stream.
132 The type is used by functions of this class and derived classes that perform
133 seek operations to marks within a stream.
135 The type uses the ERead and EWrite enumeration values, as bit flags, to identify
136 the read and write marks respectively.
138 ERead is an MStreamBuf::TRead enumerator. EWrite is an MStreamBuf::EWrite
141 @see MStreamBuf::TRead
142 @see MStreamBuf::TWrite */
143 typedef MStreamBuf::TMark TMark;
145 /** Constructs an empty object.
147 Call Share() to prepare for access to a shared stream buffer. */
148 TStreamExchange(const TStreamExchange&);
149 TStreamExchange& operator=(const TStreamExchange&);
151 IMPORT_C TBool RefersTo(const TStreamMark& aMark);
152 IMPORT_C void Drop(const TStreamMark& aMark);
153 IMPORT_C void GetL(TStreamMark& aMark);
154 IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength,TStreamMark& aMark);
155 IMPORT_C TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark);
156 IMPORT_C TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer,TStreamMark& aMark);
157 IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength,TStreamMark& aMark);
158 IMPORT_C TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark);
159 IMPORT_C TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer,TStreamMark& aMark);
160 IMPORT_C TStreamPos DoSeekL(TStreamMark& aMark,TStreamLocation aLocation,TInt anOffset);
162 void PrepareForReadingL(TStreamMark& aMark);
163 void PrepareForWritingL(TStreamMark& aMark);
165 TInt PrepareAndReadL(TAny* aPtr,TInt aMaxLength,TStreamMark& aMark);
166 TInt PrepareAndReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark);
167 TStreamTransfer PrepareAndReadL(MStreamInput& anInput,TStreamTransfer aTransfer,TStreamMark& aMark);
168 void PrepareAndWriteL(const TAny* aPtr,TInt aLength,TStreamMark& aMark);
169 TInt PrepareAndWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus,TStreamMark& aMark);
170 TStreamTransfer PrepareAndWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer,TStreamMark& aMark);
171 TStreamPos MarkSeekL(TStreamMark& aMark,TStreamLocation aLocation,TInt anOffset);
173 inline MStreamBuf& BufL() const;
174 inline MStreamBuf& Buf() const;
180 friend class TStreamMark;
186 * A shared stream buffer.
188 This class is part of the framework used by CFileStore that allows multiple
189 stream buffers to concurrently access the single hosting file buffer, an RFileBuf
192 Each shared stream buffer maintains its own read and write positions.
194 Read and write operations to RShareBuf are directed through separate TStreamMark
195 objects, one for read and one for write. The TStreamMark objects re-direct
196 read/write operations through a TStreamExchange object to the RFileBuf object,
197 which handles the actual file read and write operations.
199 This stream buffer can also be accessed through RShareReadStream and RShareWriteStream
205 @see RShareReadStream
206 @see RShareWriteStream
208 class RShareBuf : public MStreamBuf
211 IMPORT_C RShareBuf();
212 IMPORT_C void Open(TStreamExchange& aHost,TStreamPos aPos,TInt aMode=ERead|EWrite);
213 inline void Open(TStreamExchange& aHost,TInt aMode=ERead|EWrite);
215 IMPORT_C void DoRelease();
216 IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength);
217 IMPORT_C TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
218 IMPORT_C TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer);
219 IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength);
220 IMPORT_C TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
221 IMPORT_C TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer);
222 IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
224 inline TStreamExchange& Host() const;
226 TStreamExchange* iHost;
234 * Supports the opening, for reading, of a stream which shares its host with other
237 This is also called a shared read stream.
239 The class uses a RShareBuf stream buffer.
244 class RShareReadStream : public RReadStream
247 /** Constructs an empty shared read stream object.
249 Call Open() to prepare the shared stream for reading.
251 @see RShareReadStream::Open() */
252 RShareReadStream() {}
253 IMPORT_C RShareReadStream(TStreamExchange& aHost,TStreamPos aPos=KStreamBeginning);
254 IMPORT_C void Open(TStreamExchange& aHost,TStreamPos aPos=KStreamBeginning);
262 * Supports the opening, for writing, of a stream which shares its host with other
265 This is also called a shared write stream.
267 The class uses a RShareBuf stream buffer.
272 class RShareWriteStream : public RWriteStream
275 /** Constructs an empty shared write stream object.
277 Call Open() to prepare the shared stream for writing.
279 @see RShareWriteStream::Open() */
280 RShareWriteStream() {}
281 inline RShareWriteStream(const MExternalizer<TStreamRef>& anExter);
282 IMPORT_C RShareWriteStream(TStreamExchange& aHost,TStreamPos aPos=KStreamBeginning);
283 IMPORT_C void Open(TStreamExchange& aHost,TStreamPos aPos=KStreamBeginning);
288 #include <s32share.inl>