os/persistentdata/persistentstorage/store/pcstore/src/filestreambuf.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
sl@0
    17
#include <assert.h>
sl@0
    18
#include <pcstore/storeexception.h>
sl@0
    19
#include "filestreambuf.h"
sl@0
    20
sl@0
    21
namespace PCStore
sl@0
    22
{
sl@0
    23
/**
sl@0
    24
Constructs a file stream buffer object with the specified file name and open mode.
sl@0
    25
sl@0
    26
Opens the file in specified read/write mode.
sl@0
    27
sl@0
    28
@param aFileName The name of the file which the file stream buffer will open and access.
sl@0
    29
@param aMode The mode in which the file would be opened.
sl@0
    30
@exception TStoreException::EFileOpenError Error occurs in file opening.
sl@0
    31
*/
sl@0
    32
CFileStreamBuf::CFileStreamBuf(const char* aFileName, TFileMode aMode)
sl@0
    33
	:iFile(NULL), iStreamOpened(false)
sl@0
    34
	{
sl@0
    35
	if(aMode == EWriteFile) 
sl@0
    36
		{
sl@0
    37
		iFile=fopen(aFileName,"wb");
sl@0
    38
		}
sl@0
    39
	else
sl@0
    40
		{
sl@0
    41
		iFile=fopen(aFileName,"rb");
sl@0
    42
		}
sl@0
    43
	if(iFile == NULL) 
sl@0
    44
		{
sl@0
    45
		throw TStoreException(TStoreException::EFileOpenError);
sl@0
    46
		}
sl@0
    47
	}
sl@0
    48
sl@0
    49
/**
sl@0
    50
Destructor.
sl@0
    51
Closes the file.
sl@0
    52
*/
sl@0
    53
CFileStreamBuf::~CFileStreamBuf()
sl@0
    54
	{
sl@0
    55
	fclose(iFile);
sl@0
    56
	}
sl@0
    57
sl@0
    58
/**
sl@0
    59
Flags that a stream with the specified stream id is opened.
sl@0
    60
sl@0
    61
Checks whether a stream has been opened. If not, moves the file pointer to the position 
sl@0
    62
which is represented by the given stream id, and sets the stream open flag to TRUE. If a 
sl@0
    63
stream has been opened, throws an exception.
sl@0
    64
sl@0
    65
This function is called by the constructor of CStoreReadStream and CStoreWriteStream
sl@0
    66
to flag the new stream is opened. 
sl@0
    67
sl@0
    68
@param aStreamId The stream id of the open stream.
sl@0
    69
@exception TStoreException::EStreamExclusionError Another stream is still opened.
sl@0
    70
@exception TStoreException::EFileSeekError Error occurs when seeking within the file 
sl@0
    71
due to an incorrect stream id or other reason.
sl@0
    72
*/
sl@0
    73
void CFileStreamBuf::StreamOpen(TStreamId aStreamId)
sl@0
    74
	{
sl@0
    75
	//check the opened stream
sl@0
    76
	if(iStreamOpened)
sl@0
    77
		{
sl@0
    78
		throw TStoreException(TStoreException::EStreamExclusionError);
sl@0
    79
		}
sl@0
    80
	// set pointer to the correct position
sl@0
    81
	TInt ret = fseek(iFile,aStreamId.Value(),SEEK_SET);  
sl@0
    82
	if(ret)
sl@0
    83
		{
sl@0
    84
		throw TStoreException(TStoreException::EFileSeekError);
sl@0
    85
		}
sl@0
    86
sl@0
    87
	iStreamOpened = true;
sl@0
    88
	}
sl@0
    89
sl@0
    90
/** 
sl@0
    91
Flags that the opened stream is closed.
sl@0
    92
sl@0
    93
This function is called by the destructor of the CStoreReadStream and CStoreWriteStream 
sl@0
    94
to indicate the stream is being closed.
sl@0
    95
*/
sl@0
    96
void CFileStreamBuf::StreamClose()
sl@0
    97
	{
sl@0
    98
	iStreamOpened = false;
sl@0
    99
	}
sl@0
   100
sl@0
   101
/**
sl@0
   102
Gets a new stream id which will be used to create a write stream.
sl@0
   103
sl@0
   104
The new stream id is the end position of the store file.
sl@0
   105
sl@0
   106
Moves the read/write pointer to the end to the file to get the stream id.
sl@0
   107
sl@0
   108
@return The new stream id.
sl@0
   109
@exception TStoreException::EStreamExclusionError Another stream is still opened.
sl@0
   110
@exception TStoreException::EFileSeekError Error occurs when the file pointer is moved to 
sl@0
   111
the end of file.
sl@0
   112
*/	
sl@0
   113
TStreamId CFileStreamBuf::GetNewStreamId()
sl@0
   114
	{
sl@0
   115
	//check the opened stream
sl@0
   116
	if(iStreamOpened)
sl@0
   117
		{
sl@0
   118
		throw TStoreException(TStoreException::EStreamExclusionError);
sl@0
   119
		}
sl@0
   120
	// move pointer to the end of the file
sl@0
   121
	TInt ret = fseek(iFile,0,SEEK_END);  
sl@0
   122
	if(ret) 
sl@0
   123
		{
sl@0
   124
		throw TStoreException(TStoreException::EFileSeekError);
sl@0
   125
		}
sl@0
   126
sl@0
   127
	TUint size = ftell(iFile);
sl@0
   128
	TStreamId id = size;
sl@0
   129
	return id;
sl@0
   130
	}
sl@0
   131
sl@0
   132
/**
sl@0
   133
Reads the specified length of 8-bit data to the supplied buffer from the file.
sl@0
   134
sl@0
   135
Assert aLength must not be negative and aPtr must not be NULL.
sl@0
   136
sl@0
   137
@param aPtr The pointer to the buffer to receive the read data.
sl@0
   138
@param aLength The length of the data to read.
sl@0
   139
@exception TStoreException::EFileReadError Error occurs in data reading.
sl@0
   140
*/
sl@0
   141
void CFileStreamBuf::Read(const TUint8* aPtr, TInt32 aLength)
sl@0
   142
	{
sl@0
   143
	assert(aLength >= 0 && aPtr != NULL);
sl@0
   144
	if (aLength > 0) 
sl@0
   145
		{
sl@0
   146
		size_t numRead;
sl@0
   147
		numRead = fread(reinterpret_cast<void*>(const_cast<TUint8*>(aPtr)),\
sl@0
   148
			sizeof(TUint8), aLength, iFile);
sl@0
   149
		if(numRead < static_cast<TUint32>(aLength))
sl@0
   150
			{
sl@0
   151
			throw TStoreException(TStoreException::EFileReadError);
sl@0
   152
			}
sl@0
   153
		}
sl@0
   154
	}
sl@0
   155
sl@0
   156
/**
sl@0
   157
Writes the specified length of 8-bit data from the supplied buffer to the file.
sl@0
   158
sl@0
   159
Assert aLength must not be negative and aPtr must not be NULL.
sl@0
   160
sl@0
   161
@param aPtr The pointer to the buffer holding the written data.
sl@0
   162
@param aLength The length of the data to write.
sl@0
   163
@exception TStoreException::EFileWriteError Error occurs in data writing.
sl@0
   164
*/
sl@0
   165
void CFileStreamBuf::Write(const TUint8* aPtr, TInt32 aLength)
sl@0
   166
	{
sl@0
   167
	assert(aLength >= 0 && aPtr != NULL);	
sl@0
   168
	if (aLength > 0)
sl@0
   169
		{
sl@0
   170
		size_t numWritten ;
sl@0
   171
		numWritten  = fwrite(reinterpret_cast<void*>(const_cast<TUint8*>(aPtr)),\
sl@0
   172
			sizeof(TUint8), aLength, iFile);
sl@0
   173
		if(numWritten < static_cast<TUint32>(aLength))
sl@0
   174
			{
sl@0
   175
			throw TStoreException(TStoreException::EFileWriteError);
sl@0
   176
			}
sl@0
   177
		}
sl@0
   178
	}
sl@0
   179
}