os/persistentdata/persistentstorage/store/pcstore/src/filestreambuf.cpp
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 
    17 #include <assert.h>
    18 #include <pcstore/storeexception.h>
    19 #include "filestreambuf.h"
    20 
    21 namespace PCStore
    22 {
    23 /**
    24 Constructs a file stream buffer object with the specified file name and open mode.
    25 
    26 Opens the file in specified read/write mode.
    27 
    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.
    31 */
    32 CFileStreamBuf::CFileStreamBuf(const char* aFileName, TFileMode aMode)
    33 	:iFile(NULL), iStreamOpened(false)
    34 	{
    35 	if(aMode == EWriteFile) 
    36 		{
    37 		iFile=fopen(aFileName,"wb");
    38 		}
    39 	else
    40 		{
    41 		iFile=fopen(aFileName,"rb");
    42 		}
    43 	if(iFile == NULL) 
    44 		{
    45 		throw TStoreException(TStoreException::EFileOpenError);
    46 		}
    47 	}
    48 
    49 /**
    50 Destructor.
    51 Closes the file.
    52 */
    53 CFileStreamBuf::~CFileStreamBuf()
    54 	{
    55 	fclose(iFile);
    56 	}
    57 
    58 /**
    59 Flags that a stream with the specified stream id is opened.
    60 
    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.
    64 
    65 This function is called by the constructor of CStoreReadStream and CStoreWriteStream
    66 to flag the new stream is opened. 
    67 
    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.
    72 */
    73 void CFileStreamBuf::StreamOpen(TStreamId aStreamId)
    74 	{
    75 	//check the opened stream
    76 	if(iStreamOpened)
    77 		{
    78 		throw TStoreException(TStoreException::EStreamExclusionError);
    79 		}
    80 	// set pointer to the correct position
    81 	TInt ret = fseek(iFile,aStreamId.Value(),SEEK_SET);  
    82 	if(ret)
    83 		{
    84 		throw TStoreException(TStoreException::EFileSeekError);
    85 		}
    86 
    87 	iStreamOpened = true;
    88 	}
    89 
    90 /** 
    91 Flags that the opened stream is closed.
    92 
    93 This function is called by the destructor of the CStoreReadStream and CStoreWriteStream 
    94 to indicate the stream is being closed.
    95 */
    96 void CFileStreamBuf::StreamClose()
    97 	{
    98 	iStreamOpened = false;
    99 	}
   100 
   101 /**
   102 Gets a new stream id which will be used to create a write stream.
   103 
   104 The new stream id is the end position of the store file.
   105 
   106 Moves the read/write pointer to the end to the file to get the stream id.
   107 
   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 
   111 the end of file.
   112 */	
   113 TStreamId CFileStreamBuf::GetNewStreamId()
   114 	{
   115 	//check the opened stream
   116 	if(iStreamOpened)
   117 		{
   118 		throw TStoreException(TStoreException::EStreamExclusionError);
   119 		}
   120 	// move pointer to the end of the file
   121 	TInt ret = fseek(iFile,0,SEEK_END);  
   122 	if(ret) 
   123 		{
   124 		throw TStoreException(TStoreException::EFileSeekError);
   125 		}
   126 
   127 	TUint size = ftell(iFile);
   128 	TStreamId id = size;
   129 	return id;
   130 	}
   131 
   132 /**
   133 Reads the specified length of 8-bit data to the supplied buffer from the file.
   134 
   135 Assert aLength must not be negative and aPtr must not be NULL.
   136 
   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.
   140 */
   141 void CFileStreamBuf::Read(const TUint8* aPtr, TInt32 aLength)
   142 	{
   143 	assert(aLength >= 0 && aPtr != NULL);
   144 	if (aLength > 0) 
   145 		{
   146 		size_t numRead;
   147 		numRead = fread(reinterpret_cast<void*>(const_cast<TUint8*>(aPtr)),\
   148 			sizeof(TUint8), aLength, iFile);
   149 		if(numRead < static_cast<TUint32>(aLength))
   150 			{
   151 			throw TStoreException(TStoreException::EFileReadError);
   152 			}
   153 		}
   154 	}
   155 
   156 /**
   157 Writes the specified length of 8-bit data from the supplied buffer to the file.
   158 
   159 Assert aLength must not be negative and aPtr must not be NULL.
   160 
   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.
   164 */
   165 void CFileStreamBuf::Write(const TUint8* aPtr, TInt32 aLength)
   166 	{
   167 	assert(aLength >= 0 && aPtr != NULL);	
   168 	if (aLength > 0)
   169 		{
   170 		size_t numWritten ;
   171 		numWritten  = fwrite(reinterpret_cast<void*>(const_cast<TUint8*>(aPtr)),\
   172 			sizeof(TUint8), aLength, iFile);
   173 		if(numWritten < static_cast<TUint32>(aLength))
   174 			{
   175 			throw TStoreException(TStoreException::EFileWriteError);
   176 			}
   177 		}
   178 	}
   179 }