sl@0
|
1 |
// Copyright (c) 1995-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 the License "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 |
// e32\euser\us_ref.cpp
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "us_std.h"
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
Frees the memory holding the contained object.
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
EXPORT_C void RRefBase::Free()
|
sl@0
|
26 |
{
|
sl@0
|
27 |
|
sl@0
|
28 |
if (iPtr)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
if (--iPtr[-1]==0)
|
sl@0
|
31 |
User::Free(iPtr-1);
|
sl@0
|
32 |
iPtr=NULL;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
Creates a copy of an object, which is to be contained by
|
sl@0
|
41 |
this reference object.
|
sl@0
|
42 |
|
sl@0
|
43 |
@param aPtr A pointer to memory holding a copy of the object.
|
sl@0
|
44 |
@param aSize The size of the memory required to hold the object.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
EXPORT_C void RRefBase::DoAlloc(const TAny *aPtr,TInt aSize)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
|
sl@0
|
49 |
__ASSERT_ALWAYS(aSize>=0,Panic(ERefAllocSizeNegative));
|
sl@0
|
50 |
Free();
|
sl@0
|
51 |
iPtr=(TInt *)User::Alloc(aSize+sizeof(TInt));
|
sl@0
|
52 |
if (iPtr!=NULL)
|
sl@0
|
53 |
{
|
sl@0
|
54 |
iPtr++;
|
sl@0
|
55 |
iPtr[-1]=1;
|
sl@0
|
56 |
Mem::Copy(iPtr,aPtr,aSize);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
Creates a copy of an object, which is to be contained by
|
sl@0
|
65 |
this reference object, and leaves on error.
|
sl@0
|
66 |
|
sl@0
|
67 |
@param aPtr A pointer to memory holding a copy of the object.
|
sl@0
|
68 |
@param aSize The size of the memory required to hold the object.
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
EXPORT_C void RRefBase::DoAllocL(const TAny *aPtr,TInt aSize)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
|
sl@0
|
73 |
DoAlloc(aPtr,aSize);
|
sl@0
|
74 |
User::LeaveIfNull(iPtr);
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
Provides an implementation for the RRef class copy
|
sl@0
|
82 |
constructor and assignment operator.
|
sl@0
|
83 |
|
sl@0
|
84 |
@param aRef The reference object to be copied.
|
sl@0
|
85 |
|
sl@0
|
86 |
@see RRef
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
EXPORT_C void RRefBase::Copy(const RRefBase &aRef)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
|
sl@0
|
91 |
if (this!=(&aRef))
|
sl@0
|
92 |
{
|
sl@0
|
93 |
Free();
|
sl@0
|
94 |
iPtr=aRef.iPtr;
|
sl@0
|
95 |
iPtr[-1]++;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|