sl@0
|
1 |
#ifndef __s32file_private_h__
|
sl@0
|
2 |
#define __s32file_private_h__/*
|
sl@0
|
3 |
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
4 |
* All rights reserved.
|
sl@0
|
5 |
* This component and the accompanying materials are made available
|
sl@0
|
6 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
7 |
* which accompanies this distribution, and is available
|
sl@0
|
8 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* Initial Contributors:
|
sl@0
|
11 |
* Nokia Corporation - initial contribution.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Contributors:
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* Description:
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <s32buf.h>
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
* @file
|
sl@0
|
23 |
* @internalComponent
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
|
sl@0
|
26 |
namespace store_private
|
sl@0
|
27 |
{
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
class MemStreamBuf : public MStreamBuf
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
MemStreamBuf(const CStreamStore& aStore, TStreamId aId);
|
sl@0
|
34 |
MemStreamBuf(const CStreamStore& aStore, TStreamId aId,
|
sl@0
|
35 |
MStreamBuf *aStreamIn, std::streamoff aOffset, TUint32 aLength);
|
sl@0
|
36 |
|
sl@0
|
37 |
void AppendFromFile(MStreamBuf *aStreamIn, TUint32 aLength);
|
sl@0
|
38 |
|
sl@0
|
39 |
// Symbian definition does not have a virtual destructor and relies on DoRelease virtual...
|
sl@0
|
40 |
|
sl@0
|
41 |
TStreamId StreamId() const;
|
sl@0
|
42 |
|
sl@0
|
43 |
typedef std::vector<TUint8> StreamData;
|
sl@0
|
44 |
const StreamData &GetData() const;
|
sl@0
|
45 |
|
sl@0
|
46 |
private:
|
sl@0
|
47 |
virtual TInt DoReadL(TAny *aPtr,TInt aMaxLength);
|
sl@0
|
48 |
virtual void DoWriteL(const TUint8* aPtr,TInt aLength);
|
sl@0
|
49 |
virtual TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
|
sl@0
|
50 |
virtual void DoRelease();
|
sl@0
|
51 |
|
sl@0
|
52 |
const CStreamStore *iStore;
|
sl@0
|
53 |
TStreamId iStreamId;
|
sl@0
|
54 |
TUint32 iCurrentReadIndex;
|
sl@0
|
55 |
TUint32 iCurrentWriteIndex;
|
sl@0
|
56 |
StreamData iData;
|
sl@0
|
57 |
};
|
sl@0
|
58 |
|
sl@0
|
59 |
}; // end of namespace store_private
|
sl@0
|
60 |
|
sl@0
|
61 |
#endif
|