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.
18 #include <pcstore/storeexception.h>
19 #include "filestreambuf.h"
24 Constructs a file stream buffer object with the specified file name and open mode.
26 Opens the file in specified read/write mode.
28 @param aFileName The name of the file which the file stream buffer will open and access.
29 @param aMode The mode in which the file would be opened.
30 @exception TStoreException::EFileOpenError Error occurs in file opening.
32 CFileStreamBuf::CFileStreamBuf(const char* aFileName, TFileMode aMode)
33 :iFile(NULL), iStreamOpened(false)
35 if(aMode == EWriteFile)
37 iFile=fopen(aFileName,"wb");
41 iFile=fopen(aFileName,"rb");
45 throw TStoreException(TStoreException::EFileOpenError);
53 CFileStreamBuf::~CFileStreamBuf()
59 Flags that a stream with the specified stream id is opened.
61 Checks whether a stream has been opened. If not, moves the file pointer to the position
62 which is represented by the given stream id, and sets the stream open flag to TRUE. If a
63 stream has been opened, throws an exception.
65 This function is called by the constructor of CStoreReadStream and CStoreWriteStream
66 to flag the new stream is opened.
68 @param aStreamId The stream id of the open stream.
69 @exception TStoreException::EStreamExclusionError Another stream is still opened.
70 @exception TStoreException::EFileSeekError Error occurs when seeking within the file
71 due to an incorrect stream id or other reason.
73 void CFileStreamBuf::StreamOpen(TStreamId aStreamId)
75 //check the opened stream
78 throw TStoreException(TStoreException::EStreamExclusionError);
80 // set pointer to the correct position
81 TInt ret = fseek(iFile,aStreamId.Value(),SEEK_SET);
84 throw TStoreException(TStoreException::EFileSeekError);
91 Flags that the opened stream is closed.
93 This function is called by the destructor of the CStoreReadStream and CStoreWriteStream
94 to indicate the stream is being closed.
96 void CFileStreamBuf::StreamClose()
98 iStreamOpened = false;
102 Gets a new stream id which will be used to create a write stream.
104 The new stream id is the end position of the store file.
106 Moves the read/write pointer to the end to the file to get the stream id.
108 @return The new stream id.
109 @exception TStoreException::EStreamExclusionError Another stream is still opened.
110 @exception TStoreException::EFileSeekError Error occurs when the file pointer is moved to
113 TStreamId CFileStreamBuf::GetNewStreamId()
115 //check the opened stream
118 throw TStoreException(TStoreException::EStreamExclusionError);
120 // move pointer to the end of the file
121 TInt ret = fseek(iFile,0,SEEK_END);
124 throw TStoreException(TStoreException::EFileSeekError);
127 TUint size = ftell(iFile);
133 Reads the specified length of 8-bit data to the supplied buffer from the file.
135 Assert aLength must not be negative and aPtr must not be NULL.
137 @param aPtr The pointer to the buffer to receive the read data.
138 @param aLength The length of the data to read.
139 @exception TStoreException::EFileReadError Error occurs in data reading.
141 void CFileStreamBuf::Read(const TUint8* aPtr, TInt32 aLength)
143 assert(aLength >= 0 && aPtr != NULL);
147 numRead = fread(reinterpret_cast<void*>(const_cast<TUint8*>(aPtr)),\
148 sizeof(TUint8), aLength, iFile);
149 if(numRead < static_cast<TUint32>(aLength))
151 throw TStoreException(TStoreException::EFileReadError);
157 Writes the specified length of 8-bit data from the supplied buffer to the file.
159 Assert aLength must not be negative and aPtr must not be NULL.
161 @param aPtr The pointer to the buffer holding the written data.
162 @param aLength The length of the data to write.
163 @exception TStoreException::EFileWriteError Error occurs in data writing.
165 void CFileStreamBuf::Write(const TUint8* aPtr, TInt32 aLength)
167 assert(aLength >= 0 && aPtr != NULL);
171 numWritten = fwrite(reinterpret_cast<void*>(const_cast<TUint8*>(aPtr)),\
172 sizeof(TUint8), aLength, iFile);
173 if(numWritten < static_cast<TUint32>(aLength))
175 throw TStoreException(TStoreException::EFileWriteError);