Update contrib.
1 // Copyright (c) 1998-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 const TUint32 KFirstStreamIdValue=KNullStreamIdValue+1;
19 const TInt KBufStoreGranularity=4;
21 EXPORT_C CBufStore* CBufStore::NewL(TInt anExpandSize)
22 /** Allocates and constructs a new in-memory store and returns a pointer to it.
24 @param anExpandSize The granularity of the buffers used in the implementation
25 of the store. Each stream is contained in a separate CBufSeg buffer.
26 @return A pointer to the memory store object. */
28 return new(ELeave) CBufStore(anExpandSize);
31 EXPORT_C CBufStore* CBufStore::NewLC(TInt anExpandSize)
32 /** Allocates and constructs a new in-memory store and returns a pointer to it,
33 putting a pointer to the object onto the cleanup stack.
35 Putting a pointer to the object on the cleanup stack allows the object and
36 allocated resources to be cleaned up if a subsequent leave occurs.
38 @param anExpandSize The granularity of the buffers used in the implementation
39 of the store. Each stream is contained in a separate CBufSeg buffer.
40 @return A pointer to the memory store object. */
42 CBufStore* store=NewL(anExpandSize);
43 CleanupStack::PushL(store);
47 EXPORT_C CBufStore::CBufStore(TInt anExpandSize)
49 // Construct a buffer store.
51 : iBufArray(KBufStoreGranularity),iExpandSize(anExpandSize)
54 EXPORT_C CBufStore::~CBufStore()
55 /** Frees resources owned by the object, prior to its destruction. */
57 for (TInt i=0,n=iBufArray.Count(); i<n; i++)
61 EXPORT_C TStreamId CBufStore::DoExtendL()
63 // Create a new buffer slot.
66 iBufArray.AppendL((CBufSeg*)NULL);
67 return TStreamId(iBufArray.Count()-1+KFirstStreamIdValue);
70 EXPORT_C void CBufStore::DoDeleteL(TStreamId anId)
72 // Delete the buffer at anId.
75 TInt i=anId.Value()-KFirstStreamIdValue;
76 if (i<0||i>=iBufArray.Count())
77 __LEAVE(KErrNotFound);
79 CBufSeg*& buf=iBufArray[i];
84 EXPORT_C MStreamBuf* CBufStore::DoReadL(TStreamId anId) const
86 // Open a stream for reading from the buffer at anId.
89 return HBufBuf::NewL(BufL(anId),0,HBufBuf::ERead);
92 EXPORT_C MStreamBuf* CBufStore::DoCreateL(TStreamId& anId)
94 // Create a new buffer and open a stream for writing to it.
98 return HBufBuf::NewL(BufL(anId),0,HBufBuf::ERead|HBufBuf::EWrite);
101 EXPORT_C MStreamBuf* CBufStore::DoWriteL(TStreamId anId)
103 // Open a stream for writing to the buffer at anId.
106 return HBufBuf::NewL(BufL(anId),0,HBufBuf::ERead|HBufBuf::EWrite);
109 EXPORT_C MStreamBuf* CBufStore::DoReplaceL(TStreamId anId)
111 // Open a truncating stream for writing to the buffer at anId.
114 return HBufBuf::NewL(BufL(anId),0,HBufBuf::ERead|HBufBuf::ETruncate);
117 CBufSeg& CBufStore::BufL(TStreamId anId) const
119 // Return this buffer store's buffer at anId.
122 TInt i=anId.Value()-KFirstStreamIdValue;
123 if (i<0||i>=iBufArray.Count())
124 __LEAVE(KErrNotFound);
126 CBufSeg*& buf=CONST_CAST(CArrayFixFlat<CBufSeg*>&,iBufArray)[i];
128 buf=CBufSeg::NewL(iExpandSize);