os/security/securityanddataprivacytools/securitytools/certapp/store--/s32file_private.h
Update contrib.
1 #ifndef __s32file_private_h__
2 #define __s32file_private_h__/*
3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
5 * This component and the accompanying materials are made available
6 * under the terms of the License "Eclipse Public License v1.0"
7 * which accompanies this distribution, and is available
8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 * Initial Contributors:
11 * Nokia Corporation - initial contribution.
26 namespace store_private
30 class MemStreamBuf : public MStreamBuf
33 MemStreamBuf(const CStreamStore& aStore, TStreamId aId);
34 MemStreamBuf(const CStreamStore& aStore, TStreamId aId,
35 MStreamBuf *aStreamIn, std::streamoff aOffset, TUint32 aLength);
37 void AppendFromFile(MStreamBuf *aStreamIn, TUint32 aLength);
39 // Symbian definition does not have a virtual destructor and relies on DoRelease virtual...
41 TStreamId StreamId() const;
43 typedef std::vector<TUint8> StreamData;
44 const StreamData &GetData() const;
47 virtual TInt DoReadL(TAny *aPtr,TInt aMaxLength);
48 virtual void DoWriteL(const TUint8* aPtr,TInt aLength);
49 virtual TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
50 virtual void DoRelease();
52 const CStreamStore *iStore;
54 TUint32 iCurrentReadIndex;
55 TUint32 iCurrentWriteIndex;
59 }; // end of namespace store_private