os/persistentdata/persistentstorage/store/pcstore/src/filestreambuf.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #if !defined(__FILESTREAMBUF_H__)
    17 #define __FILESTREAMBUF_H__
    18 
    19 #include <stdio.h>
    20 #include <pcstore/streamid.h>
    21 
    22 namespace PCStore
    23 {
    24 class CDirectFileStore;
    25 
    26 /**
    27 @internalComponent
    28  
    29 A file stream buffer that provides I/O interfaces for streamed data.
    30 
    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.
    34 
    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.
    38 
    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 
    41   always goes forward.
    42 
    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 
    47 and close.
    48 
    49 @see CDirectFileStore 
    50 @see CStoreWriteStream
    51 @see CStoreReadStream
    52 */
    53 class CFileStreamBuf
    54 	{
    55 public:
    56 	//Enumerations for the file open mode
    57 	enum TFileMode 
    58 	{
    59 	EReadFile=0,
    60 	EWriteFile=1
    61 	};
    62 
    63 public:
    64 	CFileStreamBuf(const char* aFileName, TFileMode aMode);
    65 	~CFileStreamBuf();
    66 	void StreamOpen(TStreamId aStreamId);
    67 	void StreamClose();
    68 	TStreamId GetNewStreamId();
    69 	void Read(const TUint8* aPtr, TInt32 aLength);
    70 	void Write(const TUint8* aPtr, TInt32 aLength);
    71 
    72 private:
    73 	CFileStreamBuf(const CFileStreamBuf& aBuf); 
    74 	CFileStreamBuf& operator=(const CFileStreamBuf& aBuf); 
    75 
    76 private:
    77 	FILE* iFile;
    78 	TBool iStreamOpened;
    79 	};
    80 }
    81 #endif // !defined(__FILESTREAMBUF_H__)