os/kernelhwsrv/kernel/eka/include/e32shbufcmn.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 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/e32shbufcmn.h
sl@0
    15
// Shareable Data Buffers
sl@0
    16
sl@0
    17
/**
sl@0
    18
	@file
sl@0
    19
	@publishedPartner
sl@0
    20
	@prototype
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef E32SHBUFCMN_H
sl@0
    24
#define E32SHBUFCMN_H
sl@0
    25
sl@0
    26
#include <e32shbuf_priv.h>
sl@0
    27
#include <e32def.h>
sl@0
    28
sl@0
    29
/**
sl@0
    30
	Defines values used to modify client behaviour when opening a pool or buffer in a new process.
sl@0
    31
sl@0
    32
	@publishedPartner
sl@0
    33
	@prototype
sl@0
    34
*/
sl@0
    35
enum TShPoolHandleFlags
sl@0
    36
	{
sl@0
    37
	/**
sl@0
    38
	The buffers will be writeable in the process where this handle is used.
sl@0
    39
	If not set, the buffers will be read-only.
sl@0
    40
	*/
sl@0
    41
	EShPoolWriteable		= 0x0001,
sl@0
    42
sl@0
    43
	/**
sl@0
    44
	The process will be able to allocate buffers from this pool.
sl@0
    45
	If not set, the process will not be able to allocate buffers from this pool.
sl@0
    46
	*/
sl@0
    47
	EShPoolAllocate			= 0x0002,
sl@0
    48
	};
sl@0
    49
sl@0
    50
sl@0
    51
/**
sl@0
    52
	Defines flags for RShBuf::Alloc() and DShPool::Alloc().
sl@0
    53
sl@0
    54
	@see RShBuf::Alloc()
sl@0
    55
	@see DShPool::Alloc()
sl@0
    56
sl@0
    57
	@publishedPartner
sl@0
    58
	@prototype
sl@0
    59
*/
sl@0
    60
enum TShPoolAllocFlags
sl@0
    61
	{
sl@0
    62
	/**
sl@0
    63
	The thread is willing to wait for a pool grow if no buffer is immediately available.
sl@0
    64
	If this is not set, the Alloc() will return immediately if no free buffer is available,
sl@0
    65
	but the pool might be able to grow to create new buffers.
sl@0
    66
	*/
sl@0
    67
	EShPoolAllocCanWait = 0x0001,
sl@0
    68
sl@0
    69
	/**
sl@0
    70
	Do not automatically map the newly-allocated buffer into this process, if the pool is page-aligned.
sl@0
    71
	(RShBuf::Alloc() only.)
sl@0
    72
	*/
sl@0
    73
	EShPoolAllocNoMap = 0x0002,
sl@0
    74
	};
sl@0
    75
sl@0
    76
sl@0
    77
/**
sl@0
    78
	Defines the attributes of a pool.
sl@0
    79
sl@0
    80
	@publishedPartner
sl@0
    81
	@prototype
sl@0
    82
*/
sl@0
    83
class TShPoolInfo
sl@0
    84
	{
sl@0
    85
public:
sl@0
    86
	IMPORT_C TShPoolInfo();
sl@0
    87
sl@0
    88
	/**
sl@0
    89
	Specifies the size of each buffer in the pool.
sl@0
    90
	*/
sl@0
    91
	TUint iBufSize;
sl@0
    92
sl@0
    93
	/**
sl@0
    94
	Specifies the initial number of buffers to be allocated to the pool.
sl@0
    95
	*/
sl@0
    96
	TUint iInitialBufs;
sl@0
    97
sl@0
    98
	/**
sl@0
    99
	Specifies the maximum number of buffers the pool can grow to.
sl@0
   100
	*/
sl@0
   101
	TUint iMaxBufs;
sl@0
   102
sl@0
   103
	/**
sl@0
   104
	This specifies when the pool grows.  If zero, the pool will not grow or shrink
sl@0
   105
	automatically.
sl@0
   106
  
sl@0
   107
	This is the proportion of free buffers left in the pool at which it should be grown.
sl@0
   108
	For example, if the ratio is 0.1, the pool will be grown when the number of free
sl@0
   109
	buffers drops to 10%.
sl@0
   110
sl@0
   111
	This value is expressed as a 32-bit fixed-point number, where the binary
sl@0
   112
	point is defined to be between bits 7 and 8 (where the least-significant
sl@0
   113
	bit is defined as bit 0).  (This format is also known as a Q8, or fx24.8
sl@0
   114
	number, or alternatively as the value * 256.)  For the example given of 10%,
sl@0
   115
	use the value 26.  It represents a value < 1 (i.e. must be < 256).  Calculations
sl@0
   116
	are rounded down towards zero, but if calculating how many buffers to trigger
sl@0
   117
	on gives 0, the grow will be triggered when 1 buffer is free.
sl@0
   118
	*/
sl@0
   119
	TUint iGrowTriggerRatio;
sl@0
   120
sl@0
   121
	/**
sl@0
   122
	This specifies the proportion by which to grow the pool each time it is grown.
sl@0
   123
	If zero, the pool will not grow or shrink automatically.
sl@0
   124
sl@0
   125
	It is expressed as a 32-bit fx24.8 fixed-point number, in the same way as
sl@0
   126
	iGrowTriggerRatio.  Calculations are rounded down towards zero, but if calculating
sl@0
   127
	how many buffers to grow by yields 0, then the pool will be grown by 1 buffer.
sl@0
   128
	*/
sl@0
   129
	TUint iGrowByRatio;
sl@0
   130
sl@0
   131
	/**
sl@0
   132
	The hysteresis value to ensure that the pool does not automatically shrink
sl@0
   133
	immediately after is grows.
sl@0
   134
sl@0
   135
	Automatic shrinking will only happen when there are (iGrowTriggerRatio +
sl@0
   136
	iGrowByRatio) * iShrinkHysteresisRatio * (total buffers in the pool) free
sl@0
   137
	buffers left in the pool.
sl@0
   138
sl@0
   139
	The amount by which the pool is shrunk depends on iGrowByRatio: it is the operational
sl@0
   140
	inverse, such that the pool would shrink down to the same number of buffers if shrunk
sl@0
   141
	immediately after growing (although hysteresis normally prevents this).
sl@0
   142
sl@0
   143
	For example, if iGrowByRatio is 10%, a pool of 100 buffers would grow to 110 buffers.
sl@0
   144
	To shrink back to 100, a shrink ratio of 10/110 = 9% is required.  That is, if the
sl@0
   145
	grow-by ration is G, the shrink-by ratio S is calculated as S = 1 - 1 / (1 + G).
sl@0
   146
sl@0
   147
	iShrinkHysteresisRatio is a 32-bit fx24.8 fixed-point number in the same way as
sl@0
   148
	iGrowTriggerRatio and iGrowByRatio.  It represents a value > 1 (i.e. must be > 256).
sl@0
   149
sl@0
   150
	@see iGrowByRatio
sl@0
   151
	*/
sl@0
   152
	TUint iShrinkHysteresisRatio;
sl@0
   153
sl@0
   154
	/**
sl@0
   155
	Specifies the alignment for each buffer, as a shift count (log2 bytes).
sl@0
   156
sl@0
   157
	For example, 9 means that each buffer is aligned on a 512-byte boundary.
sl@0
   158
	*/
sl@0
   159
	TUint iAlignment;
sl@0
   160
sl@0
   161
	/**
sl@0
   162
	Specifies flags for the pool, as bit values from TShPoolCreateFlags or-ed together.
sl@0
   163
sl@0
   164
	@see TShPoolCreateFlags
sl@0
   165
	*/
sl@0
   166
	TUint iFlags;
sl@0
   167
private:
sl@0
   168
	TInt iSpare1;			// Reserved for future use
sl@0
   169
	TInt iSpare2;
sl@0
   170
	TInt iSpare3;
sl@0
   171
	TInt iSpare4;
sl@0
   172
	};
sl@0
   173
sl@0
   174
sl@0
   175
#endif	// E32SHBUF_H
sl@0
   176