Update contrib.
1 // Copyright (c) 2004-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.
22 #include "a3f_trace_heap.h"
24 // EXTERNAL DATA STRUCTURES
25 //extern ?external_data;
26 TUint32* TraceHeap::iTraceMask = NULL;
27 TUint32* TraceHeap::iTraceLevel = NULL;
28 TBool* TraceHeap::iApiOnly = NULL;
29 RHeap* TraceHeap::iTraceHeap = NULL;
32 // EXTERNAL FUNCTION PROTOTYPES
33 //extern ?external_function( ?arg_type,?arg_type );
36 //const ?type ?constant_var = ?constant;
39 //#define ?macro ?macro_def
41 // LOCAL CONSTANTS AND MACROS
42 //const ?type ?constant_var = ?constant;
43 //#define ?macro_name ?macro_def
45 // MODULE DATA STRUCTURES
47 //typedef ?declaration
49 // LOCAL FUNCTION PROTOTYPES
50 //?type ?function_name( ?arg_type, ?arg_type );
52 // FORWARD DECLARATIONS
53 //class ?FORWARD_CLASSNAME;
55 // ============================ MEMBER FUNCTIONS ===============================
57 // -----------------------------------------------------------------------------
58 // ?classname::?member_function
59 // ?implementation_description
60 // (other items were commented in a header).
61 // -----------------------------------------------------------------------------
63 EXPORT_C void TraceHeap::CreateL(const TUint aDefaultMask)
65 // check that the heap is not already created
66 if ( TraceHeap::iTraceHeap )
71 // create a heap private to the owning process (heap can also be created as global)
72 TraceHeap::iTraceHeap = UserHeap::ChunkHeap( NULL, KMinHeapSize, KMinHeapSize, KMinHeapGrowBy );
73 __ASSERT_ALWAYS( TraceHeap::iTraceHeap, User::Leave(KErrGeneral));
75 // create iTrace... variables
76 TraceHeap::iTraceMask = (TUint32*)TraceHeap::iTraceHeap->AllocL( sizeof(TUint32) );
77 *TraceHeap::iTraceMask = aDefaultMask;
78 TraceHeap::iTraceLevel = (TUint32*)TraceHeap::iTraceHeap->AllocL( sizeof(TUint32) );
79 *TraceHeap::iTraceLevel = 0;
80 TraceHeap::iApiOnly = (TBool*)TraceHeap::iTraceHeap->AllocL( sizeof(TBool) );
81 *TraceHeap::iApiOnly = EFalse;
84 // -----------------------------------------------------------------------------
85 // ?classname::?member_function
86 // ?implementation_description
87 // (other items were commented in a header).
88 // -----------------------------------------------------------------------------
90 EXPORT_C TUint32 TraceHeap::TraceMask()
92 return *TraceHeap::iTraceMask;
95 // -----------------------------------------------------------------------------
96 // ?classname::?member_function
97 // ?implementation_description
98 // (other items were commented in a header).
99 // -----------------------------------------------------------------------------
101 EXPORT_C void TraceHeap::SetTraceMask(
102 const TUint32 aTraceMask )
104 if ( !TraceHeap::iTraceHeap )
106 TRAP_IGNORE(TraceHeap::CreateL());
108 *TraceHeap::iTraceMask = aTraceMask;
111 // -----------------------------------------------------------------------------
112 // ?classname::?member_function
113 // ?implementation_description
114 // (other items were commented in a header).
115 // -----------------------------------------------------------------------------
117 EXPORT_C TBool TraceHeap::IsMaskOn(
118 const TUint32 aMask )
120 return ( *TraceHeap::iTraceMask & aMask );
123 // -----------------------------------------------------------------------------
124 // ?classname::?member_function
125 // ?implementation_description
126 // (other items were commented in a header).
127 // -----------------------------------------------------------------------------
129 EXPORT_C void TraceHeap::SetLevel( const TUint32 aTraceLevel )
131 *TraceHeap::iTraceLevel = aTraceLevel;
134 // -----------------------------------------------------------------------------
135 // ?classname::?member_function
136 // ?implementation_description
137 // (other items were commented in a header).
138 // -----------------------------------------------------------------------------
140 EXPORT_C TBool TraceHeap::IsBelowLevel( const TUint32 aLevel )
142 return (*TraceHeap::iTraceLevel > aLevel);
145 // -----------------------------------------------------------------------------
146 // ?classname::?member_function
147 // ?implementation_description
148 // (other items were commented in a header).
149 // -----------------------------------------------------------------------------
151 EXPORT_C TUint32 TraceHeap::TraceLevel()
153 return *TraceHeap::iTraceLevel;
156 // -----------------------------------------------------------------------------
157 // ?classname::?member_function
158 // ?implementation_description
159 // (other items were commented in a header).
160 // -----------------------------------------------------------------------------
162 EXPORT_C TBool TraceHeap::IsApiOnly()
167 // -----------------------------------------------------------------------------
168 // ?classname::?member_function
169 // ?implementation_description
170 // (other items were commented in a header).
171 // -----------------------------------------------------------------------------
173 EXPORT_C void TraceHeap::SetApiOnly( const TBool aApiOnly)
175 *iApiOnly = aApiOnly;