os/persistentdata/persistentstorage/store/UMEM/UM_BUF.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 "UM_STD.H"
sl@0
    17
sl@0
    18
EXPORT_C TMemBuf::TMemBuf()
sl@0
    19
	: iBase(NULL)
sl@0
    20
/** Constructs an empty object.
sl@0
    21
sl@0
    22
Call Set() before using the object. */
sl@0
    23
	{}
sl@0
    24
sl@0
    25
EXPORT_C void TMemBuf::Set(TUint8* aPtr,TUint8* anEnd,TInt aMode)
sl@0
    26
/** Sets up the stream to use the specified area of plain memory.
sl@0
    27
sl@0
    28
@param aPtr The start address for the area of plain memory that hosts the 
sl@0
    29
stream and that also acts as the intermediate buffer.
sl@0
    30
@param anEnd The end address for the area of plain memory that hosts the stream 
sl@0
    31
and that also acts as the intermediate buffer. The addressed byte is outside 
sl@0
    32
the memory area.
sl@0
    33
@param aMode The mode in which the stream is to be used. It can be used in 
sl@0
    34
either or both read and write modes, represented by ERead and EWrite.
sl@0
    35
@see MStreamBuf::TRead
sl@0
    36
@see MStreamBuf::TWrite */
sl@0
    37
	{
sl@0
    38
	if (aPtr==NULL && anEnd==NULL)
sl@0
    39
		aPtr=anEnd=(TUint8*)this;	// treat null data as seekable zero-length data
sl@0
    40
	iBase=aPtr;
sl@0
    41
	SetBuf(ERead,(aMode&ERead)?aPtr:NULL,anEnd);
sl@0
    42
	SetBuf(EWrite,(aMode&EWrite)?aPtr:NULL,anEnd);
sl@0
    43
	}
sl@0
    44
sl@0
    45
EXPORT_C TInt TMemBuf::UnderflowL(TInt)
sl@0
    46
//
sl@0
    47
// The read buffer is empty.
sl@0
    48
//
sl@0
    49
	{
sl@0
    50
	return 0;
sl@0
    51
	}
sl@0
    52
sl@0
    53
EXPORT_C void TMemBuf::OverflowL()
sl@0
    54
//
sl@0
    55
// Ran out of write buffer.
sl@0
    56
//
sl@0
    57
	{
sl@0
    58
	__LEAVE(KErrOverflow);
sl@0
    59
	}
sl@0
    60
sl@0
    61
EXPORT_C TStreamPos TMemBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
sl@0
    62
//
sl@0
    63
// Position the mark(s) indicated by aMark at anOffset from aLocation.
sl@0
    64
//
sl@0
    65
	{
sl@0
    66
	TUint8* ptr=0;
sl@0
    67
	switch (aLocation)
sl@0
    68
		{
sl@0
    69
	case EStreamBeginning:
sl@0
    70
		ptr=Base()+anOffset;
sl@0
    71
		break;
sl@0
    72
	case EStreamMark:
sl@0
    73
		ptr=Ptr(aMark)+anOffset;
sl@0
    74
		break;
sl@0
    75
	case EStreamEnd:
sl@0
    76
		ptr=End()+anOffset;
sl@0
    77
		break;
sl@0
    78
	default:
sl@0
    79
		Panic(EMemLocationInvalid);
sl@0
    80
		break;
sl@0
    81
		}
sl@0
    82
	TInt r=KErrNone;
sl@0
    83
	if (ptr>End())
sl@0
    84
		{
sl@0
    85
		ptr=End();
sl@0
    86
		r=KErrEof;
sl@0
    87
		}
sl@0
    88
	else if (ptr<Base())
sl@0
    89
		{
sl@0
    90
		ptr=Base();
sl@0
    91
		r=KErrEof;
sl@0
    92
		}
sl@0
    93
//
sl@0
    94
	SetPtr(aMark,ptr);
sl@0
    95
	__LEAVE_IF_ERROR(r);
sl@0
    96
	return TStreamPos(ptr-Base());
sl@0
    97
	}
sl@0
    98
sl@0
    99
EXPORT_C TDesBuf::TDesBuf()
sl@0
   100
	: iDes(NULL)
sl@0
   101
/** Constructs an empty object.
sl@0
   102
sl@0
   103
Call Set() before using the object. */
sl@0
   104
	{}
sl@0
   105
sl@0
   106
EXPORT_C void TDesBuf::Set(TDes8& aDes,TInt aMode)
sl@0
   107
/** Sets up the stream to use the specified descriptor.
sl@0
   108
sl@0
   109
@param aDes The descriptor that hosts the stream and that also acts as the 
sl@0
   110
intermediate buffer.
sl@0
   111
@param aMode The mode in which the buffer is to be used. It can be used in 
sl@0
   112
either or both read and write modes, represented by ERead and EWrite.
sl@0
   113
@see TDes8
sl@0
   114
@see MStreamBuf::TRead
sl@0
   115
@see MStreamBuf::TWrite */
sl@0
   116
	{
sl@0
   117
	iDes=&aDes;
sl@0
   118
	TUint8* ptr=(TUint8*)aDes.Ptr();
sl@0
   119
	SetBuf(ERead,(aMode&ERead)?ptr:NULL,ptr+aDes.Length());
sl@0
   120
	SetBuf(EWrite,(aMode&EWrite)?ptr:NULL,ptr+aDes.MaxLength());
sl@0
   121
	}
sl@0
   122
sl@0
   123
EXPORT_C TInt TDesBuf::UnderflowL(TInt)
sl@0
   124
//
sl@0
   125
// Check if there's any more to be read.
sl@0
   126
//
sl@0
   127
	{
sl@0
   128
	Consolidate();
sl@0
   129
	return Avail(ERead);
sl@0
   130
	}
sl@0
   131
sl@0
   132
EXPORT_C void TDesBuf::OverflowL()
sl@0
   133
//
sl@0
   134
// Ran out of write buffer.
sl@0
   135
//
sl@0
   136
	{
sl@0
   137
	__LEAVE(KErrOverflow);
sl@0
   138
	}
sl@0
   139
sl@0
   140
EXPORT_C void TDesBuf::DoSynchL()
sl@0
   141
//
sl@0
   142
// Synchronise descriptor and stream buffer.
sl@0
   143
//
sl@0
   144
	{
sl@0
   145
	Consolidate();
sl@0
   146
	}
sl@0
   147
sl@0
   148
EXPORT_C TStreamPos TDesBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
sl@0
   149
//
sl@0
   150
// Position the mark(s) indicated by aMark at anOffset from aLocation.
sl@0
   151
//
sl@0
   152
	{
sl@0
   153
	Consolidate();
sl@0
   154
	TUint8* ptr=0;
sl@0
   155
	switch (aLocation)
sl@0
   156
		{
sl@0
   157
	case EStreamBeginning:
sl@0
   158
		ptr=Base()+anOffset;
sl@0
   159
		break;
sl@0
   160
	case EStreamMark:
sl@0
   161
		ptr=Ptr(aMark)+anOffset;
sl@0
   162
		break;
sl@0
   163
	case EStreamEnd:
sl@0
   164
		ptr=End(ERead)+anOffset;
sl@0
   165
		break;
sl@0
   166
	default:
sl@0
   167
		Panic(EMemLocationInvalid);
sl@0
   168
		break;
sl@0
   169
		}
sl@0
   170
	TInt r=KErrNone;
sl@0
   171
	if (ptr>End(ERead))
sl@0
   172
		{
sl@0
   173
		ptr=End(ERead);
sl@0
   174
		r=KErrEof;
sl@0
   175
		}
sl@0
   176
	else if (ptr<Base())
sl@0
   177
		{
sl@0
   178
		ptr=Base();
sl@0
   179
		r=KErrEof;
sl@0
   180
		}
sl@0
   181
//
sl@0
   182
	SetPtr(aMark,ptr);
sl@0
   183
	__LEAVE_IF_ERROR(r);
sl@0
   184
	return TStreamPos(ptr-Base());
sl@0
   185
	}
sl@0
   186
sl@0
   187
void TDesBuf::Consolidate()
sl@0
   188
//
sl@0
   189
// Update the descriptor's length as well as the read limit.
sl@0
   190
//
sl@0
   191
	{
sl@0
   192
	TUint8* ptr=Ptr(EWrite);
sl@0
   193
	if (ptr==NULL)
sl@0
   194
		return;			// ERead only desbuf
sl@0
   195
	TUint8* base=Base();
sl@0
   196
	TInt len=Max(Des().Length(),ptr-base);
sl@0
   197
	Des().SetLength(len);
sl@0
   198
	SetEnd(ERead,base+len);
sl@0
   199
	}
sl@0
   200
sl@0
   201
EXPORT_C TBufBuf::TBufBuf()
sl@0
   202
	: iBuf(NULL)
sl@0
   203
/** Constructs an empty object.
sl@0
   204
sl@0
   205
Call Set() before using the object. */
sl@0
   206
	{}
sl@0
   207
sl@0
   208
EXPORT_C void TBufBuf::Set(CBufBase& aBuf,TInt aPos,TInt aMode)
sl@0
   209
/** Sets up the stream to use the specified dynamic buffer.
sl@0
   210
sl@0
   211
@param aBuf The dynamic buffer that hosts the stream and that also acts as 
sl@0
   212
the intermediate buffer.
sl@0
   213
@param aPos The offset within the dynamic buffer where the stream starts.
sl@0
   214
@param aMode The mode in which the stream is to be used. It can be used in 
sl@0
   215
either or both read and write modes, represented by ERead and EWrite. In addition, 
sl@0
   216
specify TBufBuf::EInsert to imply insert mode; specify TBufBuf::ETruncate 
sl@0
   217
to imply truncate mode. If neither TBufBuf::EInsert nor TBufBuf::ETruncate 
sl@0
   218
are specified, then overwrite mode is implied. Both TBufBuf::EInsert and TBufBuf::ETruncate 
sl@0
   219
imply EWrite.
sl@0
   220
@see CBufBase
sl@0
   221
@see MStreamBuf::TRead
sl@0
   222
@see MStreamBuf::TWrite */
sl@0
   223
	{
sl@0
   224
	iBuf=&aBuf;
sl@0
   225
	SetPos(ERead|EWrite,aPos);
sl@0
   226
	if (aMode&(ETruncate|EInsert))
sl@0
   227
		aMode|=EWrite; // truncate and insert imply write
sl@0
   228
	iMode=aMode;
sl@0
   229
	//Initialize base class data members.
sl@0
   230
	//The first Read/Write call will reinitialize them with non NULL values.
sl@0
   231
	TStreamBuf::SetBuf(iMode & (EWrite | ERead), NULL, NULL);
sl@0
   232
	}
sl@0
   233
sl@0
   234
EXPORT_C TInt TBufBuf::UnderflowL(TInt)
sl@0
   235
//
sl@0
   236
// Establish the buffer's read area.
sl@0
   237
//
sl@0
   238
	{
sl@0
   239
	__ASSERT_ALWAYS(iMode&ERead,Panic(EMemCannotRead));
sl@0
   240
	__ASSERT_DEBUG(Ptr(ERead)==End(ERead),User::Invariant());
sl@0
   241
	TInt pos=Pos(ERead);
sl@0
   242
	TPtr8 seg=Buf().Ptr(pos);
sl@0
   243
	TUint8* ptr=(TUint8*)seg.Ptr();
sl@0
   244
	TInt len=seg.Length();
sl@0
   245
	if (iMode&ETruncate)
sl@0
   246
		{
sl@0
   247
		TInt left=Pos(EWrite)-pos;
sl@0
   248
		__ASSERT_DEBUG(left>=0,User::Invariant());
sl@0
   249
		if (left<len)
sl@0
   250
			len=left;
sl@0
   251
		}
sl@0
   252
	SetBuf(ERead,ptr,ptr+len);
sl@0
   253
	SetPos(ERead,pos+len);
sl@0
   254
	return len;
sl@0
   255
	}
sl@0
   256
sl@0
   257
EXPORT_C void TBufBuf::OverflowL()
sl@0
   258
//
sl@0
   259
// Establish the buffer's write area.
sl@0
   260
//
sl@0
   261
	{
sl@0
   262
	__ASSERT_ALWAYS(iMode&EWrite,Panic(EMemCannotWrite));
sl@0
   263
	__ASSERT_DEBUG(Ptr(EWrite)==End(EWrite)&&Pos(EWrite)<Buf().Size(),User::Invariant());
sl@0
   264
	TInt pos=Pos(EWrite);
sl@0
   265
	TPtr8 seg=Buf().Ptr(pos);
sl@0
   266
	TUint8* ptr=(TUint8*)seg.Ptr();
sl@0
   267
	TInt len=seg.Length();
sl@0
   268
	SetBuf(EWrite,ptr,ptr+len);
sl@0
   269
	SetPos(EWrite,pos+len);
sl@0
   270
	}
sl@0
   271
sl@0
   272
EXPORT_C void TBufBuf::DoSynchL()
sl@0
   273
//
sl@0
   274
// Synchronise buffer and stream buffer and compress.
sl@0
   275
//
sl@0
   276
	{
sl@0
   277
	Consolidate();
sl@0
   278
	Buf().Compress();
sl@0
   279
	}
sl@0
   280
sl@0
   281
EXPORT_C void TBufBuf::DoWriteL(const TAny* aPtr,TInt aLength)
sl@0
   282
//
sl@0
   283
// Consume aLength bytes, taking care of any reallocation.
sl@0
   284
//
sl@0
   285
	{
sl@0
   286
	__ASSERT_ALWAYS(iMode&EWrite,Panic(EMemCannotWrite));
sl@0
   287
	__ASSERT_DEBUG(aLength>=0,Panic(EMemWriteLengthNegative));
sl@0
   288
	__ASSERT_DEBUG(aLength>0,Panic(EMemWriteNoTransfer));
sl@0
   289
	TInt len=(iMode&EInsert?0:Min(aLength,Buf().Size()-Mark(EWrite)));
sl@0
   290
	if (len>0)
sl@0
   291
		{
sl@0
   292
		TStreamBuf::DoWriteL(aPtr,len);
sl@0
   293
		aPtr=(TUint8*)aPtr+len;
sl@0
   294
		aLength-=len;
sl@0
   295
		}
sl@0
   296
	if (aLength>0)
sl@0
   297
		{
sl@0
   298
		Consolidate();
sl@0
   299
		TInt pos=Pos(EWrite);
sl@0
   300
		Buf().InsertL(pos,aPtr,aLength);
sl@0
   301
		if (Pos(ERead)>pos)
sl@0
   302
			MovePos(ERead,aLength);
sl@0
   303
		SetPos(EWrite,pos+aLength);
sl@0
   304
		}
sl@0
   305
	}
sl@0
   306
sl@0
   307
EXPORT_C TStreamPos TBufBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
sl@0
   308
//
sl@0
   309
// Position the mark(s) indicated by aMark at anOffset from aLocation.
sl@0
   310
//
sl@0
   311
	{
sl@0
   312
	Consolidate();
sl@0
   313
	TInt size=Buf().Size();
sl@0
   314
	switch (aLocation)
sl@0
   315
		{
sl@0
   316
	case EStreamBeginning:
sl@0
   317
		break;
sl@0
   318
	case EStreamMark:
sl@0
   319
		anOffset+=Pos(aMark);
sl@0
   320
		break;
sl@0
   321
	case EStreamEnd:
sl@0
   322
		anOffset+=size;
sl@0
   323
		break;
sl@0
   324
	default:
sl@0
   325
		Panic(EMemLocationInvalid);
sl@0
   326
		break;
sl@0
   327
		}
sl@0
   328
	TInt r=KErrNone;
sl@0
   329
	if (anOffset>size)
sl@0
   330
		{
sl@0
   331
		anOffset=size;
sl@0
   332
		r=KErrEof;
sl@0
   333
		}
sl@0
   334
	else if (anOffset<0)
sl@0
   335
		{
sl@0
   336
		anOffset=0;
sl@0
   337
		r=KErrEof;
sl@0
   338
		}
sl@0
   339
//
sl@0
   340
	SetPos(aMark,anOffset);
sl@0
   341
	__LEAVE_IF_ERROR(r);
sl@0
   342
	return TStreamPos(anOffset);
sl@0
   343
	}
sl@0
   344
sl@0
   345
void TBufBuf::Consolidate()
sl@0
   346
//
sl@0
   347
// Empty buffer areas and, in truncate mode, cut off at the current write position.
sl@0
   348
//
sl@0
   349
	{
sl@0
   350
	MovePos(ERead,-Avail(ERead));
sl@0
   351
	MovePos(EWrite,-Avail(EWrite));
sl@0
   352
	SetBuf(ERead|EWrite,NULL,NULL);
sl@0
   353
	if (iMode&ETruncate)
sl@0
   354
		{
sl@0
   355
		Buf().Delete(Pos(EWrite),Buf().Size()-Pos(EWrite));
sl@0
   356
		iMode&=~ETruncate;
sl@0
   357
		}
sl@0
   358
	}
sl@0
   359
sl@0
   360
void TBufBuf::SetPos(TMark aMark,TInt aPos)
sl@0
   361
//
sl@0
   362
// Set the buffer position for the mark(s) indicated by aMark
sl@0
   363
//
sl@0
   364
	{
sl@0
   365
	__ASSERT_ALWAYS(!(aMark&~(ERead|EWrite)),Panic(EMemMarkInvalid));
sl@0
   366
	if (aMark&ERead)
sl@0
   367
		SetPos(ERead,aPos);
sl@0
   368
	if (aMark&EWrite)
sl@0
   369
		SetPos(EWrite,aPos);
sl@0
   370
	}
sl@0
   371
sl@0
   372
TInt TBufBuf::Pos(TMark aMark) const
sl@0
   373
//
sl@0
   374
// Return the buffer position for the mark indicated by aMark.
sl@0
   375
//
sl@0
   376
	{
sl@0
   377
	if (aMark==ERead)
sl@0
   378
		return Pos(ERead);
sl@0
   379
//
sl@0
   380
	__ASSERT_ALWAYS(aMark==EWrite,Panic(EMemMarkInvalid));
sl@0
   381
	return Pos(EWrite);
sl@0
   382
	}
sl@0
   383