os/kernelhwsrv/kernel/eka/include/drivers/resourcecontrol.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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\include\drivers\resourcecontrol.inl
sl@0
    15
// 
sl@0
    16
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    17
//          to change without noticed. Such APIs should therefore not be used
sl@0
    18
//          outside the Kernel and Hardware Services package.
sl@0
    19
//
sl@0
    20
sl@0
    21
/* The Driver's Version */
sl@0
    22
inline TVersion DResConPddFactory::VersionRequired()
sl@0
    23
	{
sl@0
    24
	const TInt KResConMajorVersionNumber=1;
sl@0
    25
	const TInt KResConMinorVersionNumber=0;
sl@0
    26
	const TInt KResConBuildVersionNumber=KE32BuildVersionNumber;
sl@0
    27
	return TVersion(KResConMajorVersionNumber,KResConMinorVersionNumber,KResConBuildVersionNumber);
sl@0
    28
	}
sl@0
    29
sl@0
    30
/** Second stage constructor
sl@0
    31
 Allocates the specified size in kernel heap and creates a virtual link */
sl@0
    32
template <class T>
sl@0
    33
inline TInt DResourceCon<T>::Initialise(TUint16 aInitialSize)
sl@0
    34
	{
sl@0
    35
    __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Initialise"));
sl@0
    36
    __KTRACE_OPT(KRESMANAGER, Kern::Printf("aInitialSize %d", aInitialSize));
sl@0
    37
    //Allocate memory for size specified.
sl@0
    38
	if(aInitialSize != 0)
sl@0
    39
		{
sl@0
    40
		iArray = (T**) new (T*[aInitialSize]);
sl@0
    41
		if((!iArray))
sl@0
    42
			{
sl@0
    43
			__KTRACE_OPT(KRESMANAGER, Kern::Printf("No Sufficient memory for iArray allocation"));
sl@0
    44
			return KErrNoMemory;
sl@0
    45
			}
sl@0
    46
		//Create a virtual link by storing in each array position the index of next higher free location
sl@0
    47
		for(TInt c = 0; c < aInitialSize; c++)
sl@0
    48
			iArray[c] = (T*)(c+1);
sl@0
    49
		}
sl@0
    50
    iAllocated = aInitialSize;
sl@0
    51
    iGrowBy = aInitialSize < 2 ? aInitialSize : TUint16(aInitialSize/2);
sl@0
    52
    iCount = 0;
sl@0
    53
    iInstanceCount = 0;
sl@0
    54
    iFreeLoc = 0;
sl@0
    55
	__KTRACE_OPT(KRESMANAGER, Kern::Printf("<DResourceCon<T>::Initialise"));
sl@0
    56
#ifdef PRM_INSTRUMENTATION_MACRO
sl@0
    57
	if(aInitialSize)
sl@0
    58
		{
sl@0
    59
		TUint size = aInitialSize * 4;
sl@0
    60
		PRM_MEMORY_USAGE_TRACE
sl@0
    61
		}
sl@0
    62
#endif
sl@0
    63
	return KErrNone;
sl@0
    64
	}
sl@0
    65
sl@0
    66
/** Resize the array */
sl@0
    67
template <class T>
sl@0
    68
inline TInt DResourceCon<T>::ReSize(TUint16 aGrowBy)
sl@0
    69
	{
sl@0
    70
    __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::ReSize"));
sl@0
    71
    __KTRACE_OPT(KRESMANAGER, Kern::Printf("aGrowBy %d\n", aGrowBy));
sl@0
    72
	// Allocate memory for already existing + new required size.
sl@0
    73
	TInt r = Kern::SafeReAlloc((TAny*&)iArray, iAllocated * sizeof(T*), (iAllocated+aGrowBy)*sizeof(T*));
sl@0
    74
	if(r != KErrNone)
sl@0
    75
		return r;
sl@0
    76
    TUint16 c = iAllocated;
sl@0
    77
    //Virtually link the free ones
sl@0
    78
    while(c<(iAllocated+aGrowBy))
sl@0
    79
		{
sl@0
    80
         iArray[c]=(T*)(c+1);
sl@0
    81
         c++;
sl@0
    82
		}
sl@0
    83
    iAllocated = TUint16(iAllocated + aGrowBy);
sl@0
    84
#ifdef PRM_INSTRUMENTATION_MACRO
sl@0
    85
    TUint size = aGrowBy*4;
sl@0
    86
    PRM_MEMORY_USAGE_TRACE
sl@0
    87
#endif
sl@0
    88
	__KTRACE_OPT(KRESMANAGER, Kern::Printf("< DResourceCon<T>::ReSize, iAllocated = %d", iAllocated));
sl@0
    89
	return KErrNone;
sl@0
    90
	}
sl@0
    91
sl@0
    92
/** Delete the allocated array */
sl@0
    93
template <class T>
sl@0
    94
inline void DResourceCon<T>::Delete()
sl@0
    95
	{
sl@0
    96
    delete []iArray;
sl@0
    97
	}
sl@0
    98
sl@0
    99
/** Find the object at the specified location */
sl@0
   100
template <class T>
sl@0
   101
inline T* DResourceCon<T>::operator[](TUint16 anIndex)
sl@0
   102
	{
sl@0
   103
    __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::operator[], anIndex = %d", anIndex));
sl@0
   104
	// Check if passed index is inside allocated range and is not free.
sl@0
   105
    if(anIndex>=iAllocated || (((TUint)iArray[anIndex])<=iAllocated))
sl@0
   106
		return NULL;
sl@0
   107
    return iArray[anIndex];
sl@0
   108
	}
sl@0
   109
sl@0
   110
/** Remove the specified object from the container */
sl@0
   111
template <class T>
sl@0
   112
inline TInt DResourceCon<T>::Remove(T* /*aObj */, TUint16 aIndex)
sl@0
   113
	{
sl@0
   114
    __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Remove"));
sl@0
   115
    if(aIndex>=iAllocated)
sl@0
   116
		{
sl@0
   117
		__KTRACE_OPT(KRESMANAGER, Kern::Printf("Object not found, iAllocated = %d, index = %d", iAllocated, aIndex));
sl@0
   118
		DPowerResourceController::Panic(DPowerResourceController::EObjectNotFoundInList);
sl@0
   119
		}
sl@0
   120
	// Add the entry to the free location
sl@0
   121
	iArray[aIndex] = (T*)iFreeLoc;
sl@0
   122
	iFreeLoc = aIndex;
sl@0
   123
    iCount--; //Decrement valid client count
sl@0
   124
	__KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Remove"));
sl@0
   125
    return KErrNone;
sl@0
   126
	}
sl@0
   127
sl@0
   128
/** Add the specified object into the container */
sl@0
   129
template <class T>
sl@0
   130
inline TInt DResourceCon<T>::Add(T* aObj, TUint &aId)
sl@0
   131
	{
sl@0
   132
    __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Add"));
sl@0
   133
	//Check for array full
sl@0
   134
	if(iFreeLoc == iAllocated)
sl@0
   135
		return KErrNoMemory;
sl@0
   136
    //Update in the array in the free location
sl@0
   137
	aId = ((++iInstanceCount & INSTANCE_COUNT_BIT_MASK) << INSTANCE_COUNT_POS); //Instance count
sl@0
   138
	aId |= (iFreeLoc & ID_INDEX_BIT_MASK); //Array index
sl@0
   139
    TUint16 nextFreeLoc = (TUint16)(TUint)iArray[iFreeLoc];
sl@0
   140
    iArray[iFreeLoc] = aObj;
sl@0
   141
    iFreeLoc = nextFreeLoc;
sl@0
   142
    __KTRACE_OPT(KRESMANAGER, Kern::Printf("iFreeLoc %d", iFreeLoc));
sl@0
   143
    iCount++;  //Increment the valid client count
sl@0
   144
    return KErrNone;
sl@0
   145
	}
sl@0
   146
sl@0
   147
/** Find the entry with specified name and update in anEntry */
sl@0
   148
template <class T>
sl@0
   149
inline TInt DResourceCon<T>::Find(T*& anEntry, TDesC8& aName)
sl@0
   150
	{
sl@0
   151
    __KTRACE_OPT(KRESMANAGER, Kern::Printf(">DResourceCon<T>::Find, aName %S", &aName));
sl@0
   152
    anEntry = NULL;
sl@0
   153
    T* pC=anEntry;
sl@0
   154
    for(TUint count = 0; count<iAllocated; count++)
sl@0
   155
		{
sl@0
   156
        /* Check whether the location is free */
sl@0
   157
        if(((TUint)iArray[count]) <= iAllocated)
sl@0
   158
            continue;
sl@0
   159
        pC=(T*)iArray[count];
sl@0
   160
        if(!aName.Compare(*(const TDesC8*)pC->iName))
sl@0
   161
			{
sl@0
   162
			anEntry=pC;
sl@0
   163
			__KTRACE_OPT(KRESMANAGER, Kern::Printf("<DResourceCon<T>::Find, Entry Found"));
sl@0
   164
			return KErrNone;
sl@0
   165
			}
sl@0
   166
		}
sl@0
   167
sl@0
   168
	__KTRACE_OPT(KRESMANAGER, Kern::Printf("<DResourceCon<T>::Find, Entry Not Found"));
sl@0
   169
    return KErrNotFound;
sl@0
   170
	}