Update contrib.
1 // Copyright (c) 2006-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 #if !defined(__FILESTREAMBUF_H__)
17 #define __FILESTREAMBUF_H__
20 #include <pcstore/streamid.h>
24 class CDirectFileStore;
29 A file stream buffer that provides I/O interfaces for streamed data.
31 This file stream buffer:
32 . is unbuffered: all data passed to it will immediately be written to the corresponding file
33 or returned to its caller.
35 . provides read or write capability: it opens the file in read or write mode. After it is
36 instantiated, only read or write function can be called, depending on the file open mode.
37 Exception will be thrown upon an unmatching call.
39 . is unseekable. It only moves the file pointer to the position represented by the stream id,
40 which is passed to its constructor. In the subsequent read or write operations, the pointer
43 For each file store, one object of this class is created in the constructor of CDirectFileStore.
44 CDirectFileStore will pass the reference of this object to the stream it creates. In order to
45 ensure there is only one stream opened in any moment, streams will call the StreamOpen and
46 StreamClose methods respectively in their constructor and destructor to signal their open
50 @see CStoreWriteStream
56 //Enumerations for the file open mode
64 CFileStreamBuf(const char* aFileName, TFileMode aMode);
66 void StreamOpen(TStreamId aStreamId);
68 TStreamId GetNewStreamId();
69 void Read(const TUint8* aPtr, TInt32 aLength);
70 void Write(const TUint8* aPtr, TInt32 aLength);
73 CFileStreamBuf(const CFileStreamBuf& aBuf);
74 CFileStreamBuf& operator=(const CFileStreamBuf& aBuf);
81 #endif // !defined(__FILESTREAMBUF_H__)