Update contrib.
1 // Copyright (c) 2007-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 the License "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.
14 // e32\include\drivers\resourcecontrol.inl
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without noticed. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
21 /* The Driver's Version */
22 inline TVersion DResConPddFactory::VersionRequired()
24 const TInt KResConMajorVersionNumber=1;
25 const TInt KResConMinorVersionNumber=0;
26 const TInt KResConBuildVersionNumber=KE32BuildVersionNumber;
27 return TVersion(KResConMajorVersionNumber,KResConMinorVersionNumber,KResConBuildVersionNumber);
30 /** Second stage constructor
31 Allocates the specified size in kernel heap and creates a virtual link */
33 inline TInt DResourceCon<T>::Initialise(TUint16 aInitialSize)
35 __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Initialise"));
36 __KTRACE_OPT(KRESMANAGER, Kern::Printf("aInitialSize %d", aInitialSize));
37 //Allocate memory for size specified.
40 iArray = (T**) new (T*[aInitialSize]);
43 __KTRACE_OPT(KRESMANAGER, Kern::Printf("No Sufficient memory for iArray allocation"));
46 //Create a virtual link by storing in each array position the index of next higher free location
47 for(TInt c = 0; c < aInitialSize; c++)
48 iArray[c] = (T*)(c+1);
50 iAllocated = aInitialSize;
51 iGrowBy = aInitialSize < 2 ? aInitialSize : TUint16(aInitialSize/2);
55 __KTRACE_OPT(KRESMANAGER, Kern::Printf("<DResourceCon<T>::Initialise"));
56 #ifdef PRM_INSTRUMENTATION_MACRO
59 TUint size = aInitialSize * 4;
60 PRM_MEMORY_USAGE_TRACE
66 /** Resize the array */
68 inline TInt DResourceCon<T>::ReSize(TUint16 aGrowBy)
70 __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::ReSize"));
71 __KTRACE_OPT(KRESMANAGER, Kern::Printf("aGrowBy %d\n", aGrowBy));
72 // Allocate memory for already existing + new required size.
73 TInt r = Kern::SafeReAlloc((TAny*&)iArray, iAllocated * sizeof(T*), (iAllocated+aGrowBy)*sizeof(T*));
76 TUint16 c = iAllocated;
77 //Virtually link the free ones
78 while(c<(iAllocated+aGrowBy))
83 iAllocated = TUint16(iAllocated + aGrowBy);
84 #ifdef PRM_INSTRUMENTATION_MACRO
85 TUint size = aGrowBy*4;
86 PRM_MEMORY_USAGE_TRACE
88 __KTRACE_OPT(KRESMANAGER, Kern::Printf("< DResourceCon<T>::ReSize, iAllocated = %d", iAllocated));
92 /** Delete the allocated array */
94 inline void DResourceCon<T>::Delete()
99 /** Find the object at the specified location */
101 inline T* DResourceCon<T>::operator[](TUint16 anIndex)
103 __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::operator[], anIndex = %d", anIndex));
104 // Check if passed index is inside allocated range and is not free.
105 if(anIndex>=iAllocated || (((TUint)iArray[anIndex])<=iAllocated))
107 return iArray[anIndex];
110 /** Remove the specified object from the container */
112 inline TInt DResourceCon<T>::Remove(T* /*aObj */, TUint16 aIndex)
114 __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Remove"));
115 if(aIndex>=iAllocated)
117 __KTRACE_OPT(KRESMANAGER, Kern::Printf("Object not found, iAllocated = %d, index = %d", iAllocated, aIndex));
118 DPowerResourceController::Panic(DPowerResourceController::EObjectNotFoundInList);
120 // Add the entry to the free location
121 iArray[aIndex] = (T*)iFreeLoc;
123 iCount--; //Decrement valid client count
124 __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Remove"));
128 /** Add the specified object into the container */
130 inline TInt DResourceCon<T>::Add(T* aObj, TUint &aId)
132 __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Add"));
133 //Check for array full
134 if(iFreeLoc == iAllocated)
136 //Update in the array in the free location
137 aId = ((++iInstanceCount & INSTANCE_COUNT_BIT_MASK) << INSTANCE_COUNT_POS); //Instance count
138 aId |= (iFreeLoc & ID_INDEX_BIT_MASK); //Array index
139 TUint16 nextFreeLoc = (TUint16)(TUint)iArray[iFreeLoc];
140 iArray[iFreeLoc] = aObj;
141 iFreeLoc = nextFreeLoc;
142 __KTRACE_OPT(KRESMANAGER, Kern::Printf("iFreeLoc %d", iFreeLoc));
143 iCount++; //Increment the valid client count
147 /** Find the entry with specified name and update in anEntry */
149 inline TInt DResourceCon<T>::Find(T*& anEntry, TDesC8& aName)
151 __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Find, aName %S", &aName));
154 for(TUint count = 0; count<iAllocated; count++)
156 /* Check whether the location is free */
157 if(((TUint)iArray[count]) <= iAllocated)
159 pC=(T*)iArray[count];
160 if(!aName.Compare(*(const TDesC8*)pC->iName))
163 __KTRACE_OPT(KRESMANAGER, Kern::Printf("<DResourceCon<T>::Find, Entry Found"));
168 __KTRACE_OPT(KRESMANAGER, Kern::Printf("<DResourceCon<T>::Find, Entry Not Found"));