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 "UT_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
EXPORT_C TStreamId TSwizzleCBase::AsId() const
|
sl@0
|
19 |
/** Gets the streamid of the represented object.
|
sl@0
|
20 |
|
sl@0
|
21 |
This swizzle must currently represent the object as a stream id, otherwise
|
sl@0
|
22 |
the function raises a STORE-Store 3 panic.
|
sl@0
|
23 |
|
sl@0
|
24 |
@return The stream id of the represented object */
|
sl@0
|
25 |
{
|
sl@0
|
26 |
__ASSERT_ALWAYS(IsId(),Panic(EStoreSwizzleBadId));
|
sl@0
|
27 |
return iPtr==NULL?KNullStreamId:TStreamId((TUint32)iPtr>>1); // implementation dependency
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
EXPORT_C void TSwizzleCBase::InternalizeL(RReadStream& aStream)
|
sl@0
|
31 |
/** Internalises a stream id from the read stream, constructs a swizzle from this
|
sl@0
|
32 |
stream id and copies the swizzle to this swizzle.
|
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 |
@param aStream Stream from which the stream id should be internalised */
|
sl@0
|
38 |
{
|
sl@0
|
39 |
TStreamId id;
|
sl@0
|
40 |
aStream>>id;
|
sl@0
|
41 |
*this=TSwizzleCBase(id);
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
EXPORT_C TSwizzleCBase::TSwizzleCBase(TStreamId anId)
|
sl@0
|
45 |
//
|
sl@0
|
46 |
// Construct from a stream id.
|
sl@0
|
47 |
//
|
sl@0
|
48 |
: iPtr(anId==KNullStreamId?NULL:(TAny*)((anId.Value()<<1)|0x1))
|
sl@0
|
49 |
{}
|
sl@0
|
50 |
|
sl@0
|
51 |
EXPORT_C void TSwizzleCBase::DoExternalizeL(RWriteStream& aStream,TExternalizer<TAny> anExter) const
|
sl@0
|
52 |
//
|
sl@0
|
53 |
// Write this swizzle to aStream as an out-of-stream reference.
|
sl@0
|
54 |
//
|
sl@0
|
55 |
{
|
sl@0
|
56 |
aStream<<TStreamRef(iPtr,(IsPtr()?anExter.Function():NULL));
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
EXPORT_C TBool TSwizzleCBase::IsPtrRep(const TAny* aPtr)
|
sl@0
|
60 |
//
|
sl@0
|
61 |
// Test whether aPtr is a valid representation for a pointer.
|
sl@0
|
62 |
//
|
sl@0
|
63 |
{
|
sl@0
|
64 |
return !((TUint32)aPtr&0x3); // implementation dependency
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
EXPORT_C TBool TSwizzleCBase::IsIdRep(const TAny* aPtr)
|
sl@0
|
68 |
//
|
sl@0
|
69 |
// Test whether aPtr is a valid representation for a stream id.
|
sl@0
|
70 |
//
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return aPtr==NULL||(TUint32)aPtr&0x1; // implementation dependency
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
EXPORT_C void TSwizzleCBase::__DbgChkPtr(const TAny* aPtr)
|
sl@0
|
76 |
//
|
sl@0
|
77 |
// Check for invalid pointers.
|
sl@0
|
78 |
//
|
sl@0
|
79 |
{
|
sl@0
|
80 |
__ASSERT_ALWAYS(IsPtrRep(aPtr),Panic(EStoreSwizzleBadPtr));
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
EXPORT_C void TSwizzleCBase::__DbgChkRef(TStreamRef aRef)
|
sl@0
|
84 |
//
|
sl@0
|
85 |
// Check for an invalid out-of-stream reference.
|
sl@0
|
86 |
//
|
sl@0
|
87 |
{
|
sl@0
|
88 |
__ASSERT_ALWAYS((IsPtrRep(aRef.Ptr())&&aRef.Function()!=NULL)||(IsIdRep(aRef.Ptr())&&aRef.Function()==NULL),Panic(EStoreSwizzleBadReference));
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|