sl@0
|
1 |
// Copyright (c) 1998-2010 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 "UT_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
#pragma BullseyeCoverage off
|
sl@0
|
19 |
|
sl@0
|
20 |
//
|
sl@0
|
21 |
// Panic the process with STORE-Store as the category.
|
sl@0
|
22 |
//
|
sl@0
|
23 |
GLDEF_C void Panic(TStorePanic aPanic)
|
sl@0
|
24 |
{
|
sl@0
|
25 |
_LIT(KCategory,"STORE-Store");
|
sl@0
|
26 |
User::Panic(KCategory,aPanic);
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
#pragma BullseyeCoverage on
|
sl@0
|
30 |
|
sl@0
|
31 |
EXPORT_C void TStreamId::InternalizeL(RReadStream& aStream)
|
sl@0
|
32 |
/** Internalises an object of this class from a read stream.
|
sl@0
|
33 |
|
sl@0
|
34 |
The presence of this function means that the standard templated operator>>()
|
sl@0
|
35 |
can be used to internalise objects of this class.
|
sl@0
|
36 |
|
sl@0
|
37 |
Note that the function has assignment semantics. It replaces the old value
|
sl@0
|
38 |
of the object with a new value read from the read stream.
|
sl@0
|
39 |
|
sl@0
|
40 |
@param aStream Stream from which the object should be internalised. */
|
sl@0
|
41 |
{
|
sl@0
|
42 |
aStream>>iVal;
|
sl@0
|
43 |
if (iVal>KMaxStreamIdValue)
|
sl@0
|
44 |
__LEAVE(KErrCorrupt);
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
EXPORT_C void MIncrementalCollector::DoRelease()
|
sl@0
|
48 |
/** Implementation of the public Release() function. This signals that client has
|
sl@0
|
49 |
no further need of the object and all necessary clean-up should be done. e.g.
|
sl@0
|
50 |
if the implementation object is allocated on the heap, it could be deleted. */
|
sl@0
|
51 |
{}
|
sl@0
|
52 |
|
sl@0
|
53 |
EXPORT_C void MIncrementalCollector::DoNextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus,TPckgBuf<TInt>& aTotal)
|
sl@0
|
54 |
/** Implementation of the public asynchronous NextL() function. The default implementation
|
sl@0
|
55 |
invokes the synchronous form of DoNextL() and then reports the result by signalling
|
sl@0
|
56 |
the request status.
|
sl@0
|
57 |
|
sl@0
|
58 |
@param aStep The progress value from either the last NextL() increment of
|
sl@0
|
59 |
from ResetL() if the reclamation/compaction was restarted. On return,
|
sl@0
|
60 |
should contain the new progress value, which can be used in subsequent calls
|
sl@0
|
61 |
to NextL(). This must be equal to, or less than, the previous value a
|
sl@0
|
62 |
zero value must be used to indicate that the operation is complete.
|
sl@0
|
63 |
@param aStatus A status variable. KErrNone on successful completion, otherwise
|
sl@0
|
64 |
another of the system-wide error codes.
|
sl@0
|
65 |
@param aTotal On return, should contain the total amount of free space in the
|
sl@0
|
66 |
store. */
|
sl@0
|
67 |
{
|
sl@0
|
68 |
DoNextL(aStep(),aTotal());
|
sl@0
|
69 |
TRequestStatus* stat=&aStatus;
|
sl@0
|
70 |
User::RequestComplete(stat,KErrNone);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
HDirectStoreBuf* HDirectStoreBuf::CreateL(TStreamExchange& aHost,TStreamId& anId,TInt aMode)
|
sl@0
|
74 |
//
|
sl@0
|
75 |
// Create a stream buffer for a new 'direct' stream.
|
sl@0
|
76 |
//
|
sl@0
|
77 |
{
|
sl@0
|
78 |
TInt size=aHost.SizeL();
|
sl@0
|
79 |
HDirectStoreBuf* buf=NewL(aHost,size,aMode);
|
sl@0
|
80 |
anId=TStreamId(size);
|
sl@0
|
81 |
return buf;
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
HDirectStoreBuf* HDirectStoreBuf::OpenL(TStreamExchange& aHost,TStreamId anId,TInt aMode)
|
sl@0
|
85 |
//
|
sl@0
|
86 |
// Create a stream buffer for an existing 'direct' stream.
|
sl@0
|
87 |
//
|
sl@0
|
88 |
{
|
sl@0
|
89 |
HDirectStoreBuf* buf=NewL(aHost,anId.Value(),aMode);
|
sl@0
|
90 |
return buf;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
HDirectStoreBuf* HDirectStoreBuf::NewL(TStreamExchange& aHost,TInt anOffset,TInt aMode)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
HDirectStoreBuf* buf=new(ELeave) HDirectStoreBuf(anOffset);
|
sl@0
|
96 |
buf->Open(aHost,TStreamPos(anOffset),aMode);
|
sl@0
|
97 |
return buf;
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
void HDirectStoreBuf::DoRelease()
|
sl@0
|
101 |
//
|
sl@0
|
102 |
// Finished with this stream buffer.
|
sl@0
|
103 |
//
|
sl@0
|
104 |
{
|
sl@0
|
105 |
delete this;
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
TStreamPos HDirectStoreBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
|
sl@0
|
109 |
//
|
sl@0
|
110 |
// Position the mark(s) indicated by aMark at anOffset from aLocation.
|
sl@0
|
111 |
//
|
sl@0
|
112 |
{
|
sl@0
|
113 |
TInt off=iOff;
|
sl@0
|
114 |
if (aLocation==EStreamBeginning)
|
sl@0
|
115 |
anOffset+=off;
|
sl@0
|
116 |
return RShareBuf::DoSeekL(aMark,aLocation,anOffset)-off;
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
EXPORT_C void TStreamId::__DbgChkRange(TUint32 aValue)
|
sl@0
|
120 |
//
|
sl@0
|
121 |
// Check for values out of range.
|
sl@0
|
122 |
//
|
sl@0
|
123 |
{
|
sl@0
|
124 |
__ASSERT_ALWAYS(aValue<=KMaxStreamIdValue,Panic(EStoreIdOutOfRange));
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|