os/persistentdata/persistentstorage/store/USTRM/US_SHARE.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-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
#include "US_STD.H"
sl@0
    17
sl@0
    18
EXPORT_C RShareBuf::RShareBuf()
sl@0
    19
	: iHost(NULL)
sl@0
    20
/** Constructs an empty shared stream buffer object.
sl@0
    21
sl@0
    22
Call one of the Open() functions to prepare the stream. */
sl@0
    23
	{}
sl@0
    24
sl@0
    25
EXPORT_C void RShareBuf::Open(TStreamExchange& aHost,TStreamPos aPos,TInt aMode)
sl@0
    26
/** Prepares the shared stream buffer for streaming.
sl@0
    27
sl@0
    28
The function sets the read mark and/or the write mark to the specified position 
sl@0
    29
within the host stream.
sl@0
    30
sl@0
    31
@param aHost The object that manages shared streaming.
sl@0
    32
@param aPos The position within the host stream.
sl@0
    33
@param aMode The streaming mode. This can be read and/or write, as indicated 
sl@0
    34
by the ERead and EWrite bits.
sl@0
    35
@see MStreamBuf::TRead
sl@0
    36
@see MStreamBuf::TWrite */
sl@0
    37
	{
sl@0
    38
	iHost=&aHost;
sl@0
    39
	if (aMode&ERead)
sl@0
    40
		iRMark=aPos;
sl@0
    41
	else
sl@0
    42
		iRMark.Clear();
sl@0
    43
	if (aMode&EWrite)
sl@0
    44
		iWMark=aPos;
sl@0
    45
	else
sl@0
    46
		iWMark.Clear();
sl@0
    47
	}
sl@0
    48
sl@0
    49
EXPORT_C void RShareBuf::DoRelease()
sl@0
    50
//
sl@0
    51
// Withdraw this stream buffer's marks.
sl@0
    52
//
sl@0
    53
	{
sl@0
    54
	if (iHost!=NULL)
sl@0
    55
		{
sl@0
    56
		TStreamExchange& host=*iHost;
sl@0
    57
		iRMark.Withdraw(host);
sl@0
    58
		iWMark.Withdraw(host);
sl@0
    59
		iHost=NULL;
sl@0
    60
		}
sl@0
    61
	}
sl@0
    62
sl@0
    63
EXPORT_C TInt RShareBuf::DoReadL(TAny* aPtr,TInt aMaxLength)
sl@0
    64
//
sl@0
    65
// Read up to aMaxLength bytes.
sl@0
    66
//
sl@0
    67
	{
sl@0
    68
	return iRMark.ReadL(Host(),aPtr,aMaxLength);
sl@0
    69
	}
sl@0
    70
sl@0
    71
EXPORT_C TInt RShareBuf::DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
sl@0
    72
//
sl@0
    73
// Read up to aMaxLength bytes asynchronously.
sl@0
    74
//
sl@0
    75
	{
sl@0
    76
	return iRMark.ReadL(Host(),aDes,aMaxLength,aStatus);
sl@0
    77
	}
sl@0
    78
sl@0
    79
EXPORT_C TStreamTransfer RShareBuf::DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer)
sl@0
    80
//
sl@0
    81
// Push up to aTransfer bytes into anInput.
sl@0
    82
//
sl@0
    83
	{
sl@0
    84
	return iRMark.ReadL(Host(),anInput,aTransfer);
sl@0
    85
	}
sl@0
    86
sl@0
    87
EXPORT_C void RShareBuf::DoWriteL(const TAny* aPtr,TInt aLength)
sl@0
    88
//
sl@0
    89
// Write aLength bytes.
sl@0
    90
//
sl@0
    91
	{
sl@0
    92
	iWMark.WriteL(Host(),aPtr,aLength);
sl@0
    93
	}
sl@0
    94
sl@0
    95
EXPORT_C TInt RShareBuf::DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
sl@0
    96
//
sl@0
    97
// Write up to aMaxLength bytes asynchronously.
sl@0
    98
//
sl@0
    99
	{
sl@0
   100
	return iWMark.WriteL(Host(),aDes,aMaxLength,aStatus);
sl@0
   101
	}
sl@0
   102
sl@0
   103
EXPORT_C TStreamTransfer RShareBuf::DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer)
sl@0
   104
//
sl@0
   105
// Pull up to aTransfer bytes from anOutput.
sl@0
   106
//
sl@0
   107
	{
sl@0
   108
	return iWMark.WriteL(Host(),anOutput,aTransfer);
sl@0
   109
	}
sl@0
   110
sl@0
   111
EXPORT_C TStreamPos RShareBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
sl@0
   112
//
sl@0
   113
// Position the mark(s) indicated by aMark at anOffset from aLocation.
sl@0
   114
//
sl@0
   115
	{
sl@0
   116
	TStreamExchange& host=Host();
sl@0
   117
	if (!aMark)
sl@0
   118
		{
sl@0
   119
		TStreamMark mark;
sl@0
   120
		return mark.SeekL(host,aLocation,anOffset);
sl@0
   121
		}
sl@0
   122
//
sl@0
   123
	__ASSERT_ALWAYS(!(aMark&~(ERead|EWrite)),Panic(EStreamMarkInvalid));
sl@0
   124
	TStreamPos pos(0);
sl@0
   125
	if (aMark&ERead)
sl@0
   126
		{
sl@0
   127
		__ASSERT_ALWAYS(aLocation!=EStreamMark||aMark==ERead,Panic(EStreamMarkInvalid));
sl@0
   128
		if (!iRMark.RelatesTo(host))
sl@0
   129
			__LEAVE(KErrNotReady);
sl@0
   130
//
sl@0
   131
		pos=iRMark.SeekL(host,aLocation,anOffset);
sl@0
   132
		}
sl@0
   133
	if (aMark&EWrite)
sl@0
   134
		{
sl@0
   135
		if (!iWMark.RelatesTo(host))
sl@0
   136
			__LEAVE(KErrNotReady);
sl@0
   137
//
sl@0
   138
		TStreamPos p=iWMark.SeekL(host,aLocation,anOffset);
sl@0
   139
		__ASSERT_DEBUG(aMark==EWrite||p==pos,User::Invariant());
sl@0
   140
		return p;
sl@0
   141
		}
sl@0
   142
//
sl@0
   143
	return pos;
sl@0
   144
	}
sl@0
   145
sl@0
   146
EXPORT_C RShareReadStream::RShareReadStream(TStreamExchange& aHost,TStreamPos aPos)
sl@0
   147
/** Constructs the shared read stream object and prepares the shared stream for 
sl@0
   148
reading.
sl@0
   149
sl@0
   150
@param aHost The object that manages shared streaming.
sl@0
   151
@param aPos The position of the stream within the host stream. Defaults to 
sl@0
   152
the beginning of the host stream, if not explicitly specified.
sl@0
   153
@see KStreamBeginning */
sl@0
   154
	{
sl@0
   155
	Open(aHost,aPos);
sl@0
   156
	}
sl@0
   157
sl@0
   158
EXPORT_C void RShareReadStream::Open(TStreamExchange& aHost,TStreamPos aPos)
sl@0
   159
/** Prepares the shared stream for reading.
sl@0
   160
sl@0
   161
@param aHost The object that manages shared streaming.
sl@0
   162
@param aPos The position of the stream within the host stream. Defaults to 
sl@0
   163
the beginning of the host stream, if not explicitly specified. */
sl@0
   164
	{
sl@0
   165
	iSource.Open(aHost,aPos,iSource.ERead);
sl@0
   166
	RReadStream::Attach(&iSource);
sl@0
   167
	}
sl@0
   168
sl@0
   169
EXPORT_C RShareWriteStream::RShareWriteStream(TStreamExchange& aHost,TStreamPos aPos)
sl@0
   170
/** Constructs the shared write stream object and prepares the shared stream for 
sl@0
   171
writing.
sl@0
   172
sl@0
   173
@param aHost The object that manages shared streaming.
sl@0
   174
@param aPos The position of the stream within the host stream. Defaults to 
sl@0
   175
the beginning of the host stream, if not explicitly specified.
sl@0
   176
@see KStreamBeginning */
sl@0
   177
	{
sl@0
   178
	Open(aHost,aPos);
sl@0
   179
	}
sl@0
   180
sl@0
   181
EXPORT_C void RShareWriteStream::Open(TStreamExchange& aHost,TStreamPos aPos)
sl@0
   182
/** Prepares the shared stream for writing.
sl@0
   183
sl@0
   184
@param aHost The object that manages shared streaming.
sl@0
   185
@param aPos The position of the stream within the host stream. Defaults to 
sl@0
   186
the beginning of the host stream, if not explicitly specified. */
sl@0
   187
	{
sl@0
   188
	iSink.Open(aHost,aPos,iSink.EWrite);
sl@0
   189
	RWriteStream::Attach(&iSink);
sl@0
   190
	}
sl@0
   191