1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kernel/eka/include/e32shbufcmn.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,176 @@
1.4 +// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// e32/include/e32shbufcmn.h
1.18 +// Shareable Data Buffers
1.19 +
1.20 +/**
1.21 + @file
1.22 + @publishedPartner
1.23 + @prototype
1.24 +*/
1.25 +
1.26 +#ifndef E32SHBUFCMN_H
1.27 +#define E32SHBUFCMN_H
1.28 +
1.29 +#include <e32shbuf_priv.h>
1.30 +#include <e32def.h>
1.31 +
1.32 +/**
1.33 + Defines values used to modify client behaviour when opening a pool or buffer in a new process.
1.34 +
1.35 + @publishedPartner
1.36 + @prototype
1.37 +*/
1.38 +enum TShPoolHandleFlags
1.39 + {
1.40 + /**
1.41 + The buffers will be writeable in the process where this handle is used.
1.42 + If not set, the buffers will be read-only.
1.43 + */
1.44 + EShPoolWriteable = 0x0001,
1.45 +
1.46 + /**
1.47 + The process will be able to allocate buffers from this pool.
1.48 + If not set, the process will not be able to allocate buffers from this pool.
1.49 + */
1.50 + EShPoolAllocate = 0x0002,
1.51 + };
1.52 +
1.53 +
1.54 +/**
1.55 + Defines flags for RShBuf::Alloc() and DShPool::Alloc().
1.56 +
1.57 + @see RShBuf::Alloc()
1.58 + @see DShPool::Alloc()
1.59 +
1.60 + @publishedPartner
1.61 + @prototype
1.62 +*/
1.63 +enum TShPoolAllocFlags
1.64 + {
1.65 + /**
1.66 + The thread is willing to wait for a pool grow if no buffer is immediately available.
1.67 + If this is not set, the Alloc() will return immediately if no free buffer is available,
1.68 + but the pool might be able to grow to create new buffers.
1.69 + */
1.70 + EShPoolAllocCanWait = 0x0001,
1.71 +
1.72 + /**
1.73 + Do not automatically map the newly-allocated buffer into this process, if the pool is page-aligned.
1.74 + (RShBuf::Alloc() only.)
1.75 + */
1.76 + EShPoolAllocNoMap = 0x0002,
1.77 + };
1.78 +
1.79 +
1.80 +/**
1.81 + Defines the attributes of a pool.
1.82 +
1.83 + @publishedPartner
1.84 + @prototype
1.85 +*/
1.86 +class TShPoolInfo
1.87 + {
1.88 +public:
1.89 + IMPORT_C TShPoolInfo();
1.90 +
1.91 + /**
1.92 + Specifies the size of each buffer in the pool.
1.93 + */
1.94 + TUint iBufSize;
1.95 +
1.96 + /**
1.97 + Specifies the initial number of buffers to be allocated to the pool.
1.98 + */
1.99 + TUint iInitialBufs;
1.100 +
1.101 + /**
1.102 + Specifies the maximum number of buffers the pool can grow to.
1.103 + */
1.104 + TUint iMaxBufs;
1.105 +
1.106 + /**
1.107 + This specifies when the pool grows. If zero, the pool will not grow or shrink
1.108 + automatically.
1.109 +
1.110 + This is the proportion of free buffers left in the pool at which it should be grown.
1.111 + For example, if the ratio is 0.1, the pool will be grown when the number of free
1.112 + buffers drops to 10%.
1.113 +
1.114 + This value is expressed as a 32-bit fixed-point number, where the binary
1.115 + point is defined to be between bits 7 and 8 (where the least-significant
1.116 + bit is defined as bit 0). (This format is also known as a Q8, or fx24.8
1.117 + number, or alternatively as the value * 256.) For the example given of 10%,
1.118 + use the value 26. It represents a value < 1 (i.e. must be < 256). Calculations
1.119 + are rounded down towards zero, but if calculating how many buffers to trigger
1.120 + on gives 0, the grow will be triggered when 1 buffer is free.
1.121 + */
1.122 + TUint iGrowTriggerRatio;
1.123 +
1.124 + /**
1.125 + This specifies the proportion by which to grow the pool each time it is grown.
1.126 + If zero, the pool will not grow or shrink automatically.
1.127 +
1.128 + It is expressed as a 32-bit fx24.8 fixed-point number, in the same way as
1.129 + iGrowTriggerRatio. Calculations are rounded down towards zero, but if calculating
1.130 + how many buffers to grow by yields 0, then the pool will be grown by 1 buffer.
1.131 + */
1.132 + TUint iGrowByRatio;
1.133 +
1.134 + /**
1.135 + The hysteresis value to ensure that the pool does not automatically shrink
1.136 + immediately after is grows.
1.137 +
1.138 + Automatic shrinking will only happen when there are (iGrowTriggerRatio +
1.139 + iGrowByRatio) * iShrinkHysteresisRatio * (total buffers in the pool) free
1.140 + buffers left in the pool.
1.141 +
1.142 + The amount by which the pool is shrunk depends on iGrowByRatio: it is the operational
1.143 + inverse, such that the pool would shrink down to the same number of buffers if shrunk
1.144 + immediately after growing (although hysteresis normally prevents this).
1.145 +
1.146 + For example, if iGrowByRatio is 10%, a pool of 100 buffers would grow to 110 buffers.
1.147 + To shrink back to 100, a shrink ratio of 10/110 = 9% is required. That is, if the
1.148 + grow-by ration is G, the shrink-by ratio S is calculated as S = 1 - 1 / (1 + G).
1.149 +
1.150 + iShrinkHysteresisRatio is a 32-bit fx24.8 fixed-point number in the same way as
1.151 + iGrowTriggerRatio and iGrowByRatio. It represents a value > 1 (i.e. must be > 256).
1.152 +
1.153 + @see iGrowByRatio
1.154 + */
1.155 + TUint iShrinkHysteresisRatio;
1.156 +
1.157 + /**
1.158 + Specifies the alignment for each buffer, as a shift count (log2 bytes).
1.159 +
1.160 + For example, 9 means that each buffer is aligned on a 512-byte boundary.
1.161 + */
1.162 + TUint iAlignment;
1.163 +
1.164 + /**
1.165 + Specifies flags for the pool, as bit values from TShPoolCreateFlags or-ed together.
1.166 +
1.167 + @see TShPoolCreateFlags
1.168 + */
1.169 + TUint iFlags;
1.170 +private:
1.171 + TInt iSpare1; // Reserved for future use
1.172 + TInt iSpare2;
1.173 + TInt iSpare3;
1.174 + TInt iSpare4;
1.175 + };
1.176 +
1.177 +
1.178 +#endif // E32SHBUF_H
1.179 +