os/kernelhwsrv/kernel/eka/include/e32shbuf.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/e32shbuf.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 E32SHBUF_H
sl@0
    24
#define E32SHBUF_H
sl@0
    25
sl@0
    26
#include <e32shbufcmn.h>
sl@0
    27
#include <e32cmn.h>
sl@0
    28
sl@0
    29
/**
sl@0
    30
	Specifies characteristics of the pool to be created.
sl@0
    31
sl@0
    32
	@see RShPool::Create()
sl@0
    33
sl@0
    34
	@publishedPartner
sl@0
    35
	@prototype
sl@0
    36
*/
sl@0
    37
sl@0
    38
class TShPoolCreateInfo
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	/**
sl@0
    42
	Enumeration type to create a pool with page-aligned buffers.
sl@0
    43
sl@0
    44
	The buffers in the pool will be at least the size of an MMU page,
sl@0
    45
	aligned to an MMU page, and may be mapped in and out of a process's
sl@0
    46
	address space independently.
sl@0
    47
	*/
sl@0
    48
	enum TShPoolPageAlignedBuffers
sl@0
    49
		{
sl@0
    50
		EPageAlignedBuffer = EShPoolPageAlignedBuffer,
sl@0
    51
		};
sl@0
    52
sl@0
    53
	/**
sl@0
    54
	Enumeration type to create a pool with non-page-aligned buffers.
sl@0
    55
sl@0
    56
	The buffers in the pool do not have any size or alignment restrictions beyond
sl@0
    57
	the iAlignment specified in TShPoolInfo.
sl@0
    58
sl@0
    59
	The whole pool will always mapped into a process's address space.
sl@0
    60
	*/
sl@0
    61
	enum TShPoolNonPageAlignedBuffers
sl@0
    62
		{
sl@0
    63
		ENonPageAlignedBuffer = EShPoolNonPageAlignedBuffer,
sl@0
    64
		};
sl@0
    65
sl@0
    66
	/**
sl@0
    67
	Specifies the buffer size and initial number of committed buffers for a pool
sl@0
    68
	with page-aligned buffers.
sl@0
    69
sl@0
    70
	@param aFlag			Page-aligned buffers
sl@0
    71
	@param aBufSize			Size in bytes of each buffer within the pool
sl@0
    72
	@param aInitialBufs		Initial number of buffers allocated to the pool
sl@0
    73
	*/
sl@0
    74
	IMPORT_C TShPoolCreateInfo(TShPoolPageAlignedBuffers aFlag, TUint aBufSize, TUint aInitialBufs);
sl@0
    75
sl@0
    76
	/**
sl@0
    77
	Specifies the buffer size, initial number of committed buffers, and buffer
sl@0
    78
	alignment for a pool with non-page-aligned buffers.
sl@0
    79
sl@0
    80
	@param aFlag			Non-page aligned buffers
sl@0
    81
	@param aBufSize			Size in bytes of each buffer within the pool
sl@0
    82
	@param aInitialBufs		Initial number of buffers allocated to the pool
sl@0
    83
	@param aAlignment		Alignment of the start of each buffer in the pool (shift/log2 value)
sl@0
    84
	*/
sl@0
    85
	IMPORT_C TShPoolCreateInfo(TShPoolNonPageAlignedBuffers aFlag, TUint aBufSize, TUint aInitialBufs, TUint aAlignment);
sl@0
    86
sl@0
    87
	/**
sl@0
    88
	Sets the sizing attributes for the pool, allowing it to grow and
sl@0
    89
	shrink automatically.
sl@0
    90
sl@0
    91
	If either aGrowTriggerRatio or aGrowByRatio is 0, no automatic growing or
sl@0
    92
	shrinking will be performed.
sl@0
    93
sl@0
    94
	@param aMaxBufs					The maximum number of buffers that the pool
sl@0
    95
									can grow to.  This value must not be less than
sl@0
    96
									aInitialBufs.
sl@0
    97
sl@0
    98
	@param aGrowTriggerRatio		This specifies when to grow the pool.  When the
sl@0
    99
									proportion of free buffers in the pool drops below
sl@0
   100
									this value, the pool will be grown.  This value is
sl@0
   101
									expressed as a 32-bit fixed-point number, where
sl@0
   102
									the binary point is defined to be between bits
sl@0
   103
									7 and 8 (where the least-significant bit is defined
sl@0
   104
									as bit 0).  (This format is also known as a Q8, or
sl@0
   105
									fx24.8 number, or alternatively as the value * 256.)
sl@0
   106
									It must represent a value < 1 (i.e. must be < 256).
sl@0
   107
sl@0
   108
	@param aGrowByRatio				The proportion to grow the pool by each time,
sl@0
   109
									expressed as a 32-bit fx24.8 fixed-point number, in
sl@0
   110
									the same way as aGrowTriggerRatio.
sl@0
   111
sl@0
   112
	@param aShrinkHysteresisRatio	The hysteresis value to ensure that a pool is not
sl@0
   113
									automatically shrunk immediately after it is grown.
sl@0
   114
									Automatic shrinking will only happen when there are
sl@0
   115
									(aGrowTriggerRatio + aGrowByRatio) * aShrinkHysteresisRatio *
sl@0
   116
									(total buffers in the pool) free buffers left in the pool.
sl@0
   117
									This is a 32-bit fx24.8 fixed-point number in the
sl@0
   118
									same way as aGrowTriggerRatio and aGrowByRatio.
sl@0
   119
									It must represent a value > 1 (i.e. must be > 256).
sl@0
   120
	*/
sl@0
   121
	IMPORT_C TInt SetSizingAttributes(TUint aMaxBufs, TUint aGrowTriggerRatio,
sl@0
   122
										TUint aGrowByRatio, TUint aShrinkHysteresisRatio);
sl@0
   123
sl@0
   124
	/**
sl@0
   125
	Ensures that each buffer is mapped into at most one process address space
sl@0
   126
	at a time.
sl@0
   127
sl@0
   128
	If this is set for a non-page-aligned pool, the pool creation will fail.
sl@0
   129
	*/
sl@0
   130
	IMPORT_C TInt SetExclusive();
sl@0
   131
sl@0
   132
	/**
sl@0
   133
	Specifies that unmapped guard pages are inserted between each buffer in a process's
sl@0
   134
	address space.
sl@0
   135
sl@0
   136
	If this is set for a non-page-aligned pool, the pool creation will fail.
sl@0
   137
	*/
sl@0
   138
	IMPORT_C TInt SetGuardPages();
sl@0
   139
sl@0
   140
private:
sl@0
   141
	friend class RShPool;
sl@0
   142
	TShPoolCreateInfo();		// hide the default constructor
sl@0
   143
sl@0
   144
	TShPoolInfo iInfo;
sl@0
   145
};
sl@0
   146
sl@0
   147
sl@0
   148
/**
sl@0
   149
A handle to a pool of buffers.
sl@0
   150
sl@0
   151
Pools can be created by either user-side or kernel-side components.
sl@0
   152
sl@0
   153
Upon receiving a pool handle the recipient must map either whole or part of the pool
sl@0
   154
memory into its address space.
sl@0
   155
sl@0
   156
When finished with the pool, the recipient must Close() it: this invalidates the handle.
sl@0
   157
Any further attempt to use it will panic the thread.
sl@0
   158
sl@0
   159
All pools are reference-counted and will only disappear after all users have closed them.
sl@0
   160
sl@0
   161
These handles are process-relative.
sl@0
   162
sl@0
   163
@publishedPartner
sl@0
   164
@prototype
sl@0
   165
*/
sl@0
   166
class RShPool : public RHandleBase
sl@0
   167
	{
sl@0
   168
public:
sl@0
   169
	IMPORT_C RShPool();
sl@0
   170
sl@0
   171
	/**
sl@0
   172
	Creates a pool of buffers with the required attributes and maps the memory to this process.
sl@0
   173
	The RShPool object is changed by this call (iHandle is set).
sl@0
   174
sl@0
   175
	@param aBufInfo		A structure describing the parameters of the pool to be created.
sl@0
   176
						See TShPoolCreateInfo.
sl@0
   177
sl@0
   178
	@param aFlags		Flags to modify the behaviour of the handle.  This should be a bit-wise
sl@0
   179
						OR of values from TShPoolHandleFlags.
sl@0
   180
sl@0
   181
	@return the handle (>= 0) if successful, otherwise one of the system-wide error codes.
sl@0
   182
sl@0
   183
	@see TShPoolCreateInfo
sl@0
   184
	@see TShPoolClientFlags
sl@0
   185
	*/
sl@0
   186
	IMPORT_C TInt Create(const TShPoolCreateInfo& aBufInfo, TUint aFlags);
sl@0
   187
sl@0
   188
	/**
sl@0
   189
	Retrieves information about the pool.
sl@0
   190
sl@0
   191
	@param aInfo returns pool info.
sl@0
   192
	*/
sl@0
   193
	IMPORT_C void GetInfo(TShPoolInfo& aInfo) const;
sl@0
   194
sl@0
   195
	/**
sl@0
   196
	Specifies how many buffers of a page-aligned pool this process will require
sl@0
   197
	concurrent access to.
sl@0
   198
sl@0
   199
	This determines how much of the process's address space will be allocated for
sl@0
   200
	buffers of this pool.
sl@0
   201
sl@0
   202
	@param aCount		Specifies the number of buffers to map into the process's virtual address space
sl@0
   203
						(-1 specifies that all buffers will be mapped).
sl@0
   204
sl@0
   205
	@param aAutoMap		ETrue specifies that an allocated or received buffer
sl@0
   206
	                    will be automatically mapped into the process's address space.
sl@0
   207
sl@0
   208
	@pre the pool's buffers must be page-aligned
sl@0
   209
sl@0
   210
	@return KErrNone if successful, otherwise one of the system-wide error codes.
sl@0
   211
	*/
sl@0
   212
	IMPORT_C TInt SetBufferWindow(TInt aCount, TBool aAutoMap);
sl@0
   213
sl@0
   214
	/**
sl@0
   215
	@return the number of free buffers in the pool
sl@0
   216
	*/
sl@0
   217
	IMPORT_C TUint FreeCount() const;
sl@0
   218
sl@0
   219
	/**
sl@0
   220
	Requests a notification when the number of free buffers in the pool falls to the
sl@0
   221
	level specified.
sl@0
   222
sl@0
   223
	@param aFreeBuffers	Specifies the number of free buffers that will trigger completion of the notification.
sl@0
   224
	@param aStatus		Status request to be completed when the condition is met.
sl@0
   225
	*/
sl@0
   226
	IMPORT_C void RequestLowSpaceNotification(TUint aFreeBuffers, TRequestStatus& aStatus);
sl@0
   227
sl@0
   228
	/**
sl@0
   229
	Requests a notification when the number of free buffers in the pool rises to the
sl@0
   230
	level specified.
sl@0
   231
sl@0
   232
	@param aFreeBuffers	Specifies the number of free buffers that will trigger completion of the notification.
sl@0
   233
	@param aStatus		Status request to be completed when the condition is met.
sl@0
   234
	*/
sl@0
   235
	IMPORT_C void RequestFreeSpaceNotification(TUint aFreeBuffers, TRequestStatus& aStatus);
sl@0
   236
sl@0
   237
	/**
sl@0
   238
	Cancels a low space notification request.
sl@0
   239
sl@0
   240
	The status request completes with KErrCancel.
sl@0
   241
sl@0
   242
	@param aStatus		The status request whose notification is to be cancelled.
sl@0
   243
	*/
sl@0
   244
	IMPORT_C void CancelLowSpaceNotification(TRequestStatus& aStatus);
sl@0
   245
sl@0
   246
	/**
sl@0
   247
	Cancels a free space notification request.
sl@0
   248
sl@0
   249
	The status request completes with KErrCancel.
sl@0
   250
sl@0
   251
	@param aStatus		The status request whose notification is to be cancelled.
sl@0
   252
	*/
sl@0
   253
	IMPORT_C void CancelFreeSpaceNotification(TRequestStatus& aStatus);
sl@0
   254
	};
sl@0
   255
sl@0
   256
sl@0
   257
/**
sl@0
   258
A handle to a shared buffer within a pool.
sl@0
   259
sl@0
   260
A user-side or kernel-side component allocates the buffer and then passes the
sl@0
   261
handle to the recipient.
sl@0
   262
sl@0
   263
Upon receiving a buffer handle. the recipient may map the buffer memory into its address space if not already done so.
sl@0
   264
sl@0
   265
When finished with the buffer, the recipient must Close() the handle.  This
sl@0
   266
invalidates the handle; any further attempt to use it will panic the thread.
sl@0
   267
sl@0
   268
Buffers are reference-counted and will only be freed and returned to the pool
sl@0
   269
when all users have closed them.
sl@0
   270
sl@0
   271
These handles are process-relative.
sl@0
   272
sl@0
   273
@publishedPartner
sl@0
   274
@prototype
sl@0
   275
*/
sl@0
   276
class RShBuf  : public RHandleBase
sl@0
   277
	{
sl@0
   278
public:
sl@0
   279
	inline RShBuf() : iBase(0), iSize(0) {};
sl@0
   280
sl@0
   281
	IMPORT_C void Close();
sl@0
   282
sl@0
   283
	/**
sl@0
   284
	Allocates a shared data buffer.
sl@0
   285
sl@0
   286
	By default this method will return immediately with KErrNoMemory if no buffer is
sl@0
   287
	available on the pool's free list, even if the pool could grow automatically.
sl@0
   288
sl@0
   289
	By default it will also map the allocated buffer into the calling process's address space.
sl@0
   290
sl@0
   291
	Setting EShPoolAllocCanWait in the flags indicates that the caller is prepared to
sl@0
   292
	wait while the pool is grown if a buffer is not immediately available on the free list.
sl@0
   293
sl@0
   294
	Setting EShPoolAllocNoMap in the flags indicates that the caller does not want the
sl@0
   295
	buffer to be automatically mapped into its address space.  This can improve performance
sl@0
   296
	on buffers from page-aligned pools if the caller will not need to access the data in the
sl@0
   297
	buffer (e.g. if it will just be passing it on to another component).  This only prevents
sl@0
   298
	mapping if the pool is set to not automatically map buffers into processes' address space.
sl@0
   299
sl@0
   300
	@param aPool	Pool handle
sl@0
   301
	@param aFlags	Bitwise OR of values from TShPoolAllocFlags to specify non-default behaviour.
sl@0
   302
sl@0
   303
	@return KErrNone if successful, otherwise one of the system-wide error codes.
sl@0
   304
sl@0
   305
	@see TShPoolAllocFlags
sl@0
   306
	*/
sl@0
   307
	IMPORT_C TInt Alloc(RShPool& aPool, TUint aFlags = 0);
sl@0
   308
sl@0
   309
	/**
sl@0
   310
	Maps the buffer into the calling process's virtual address space if not already done.
sl@0
   311
sl@0
   312
	It is not necessary to call this method on buffers from non-page-aligned pools, although
sl@0
   313
	it will cause no harm to do so (and will result in KErrNone being returned).
sl@0
   314
sl@0
   315
	It is not necessary to call this method on buffers from page-aligned pools returned by
sl@0
   316
	Alloc() unless EShPoolAllocNoMap was specified.
sl@0
   317
sl@0
   318
	@param aReadOnly	Indicates whether the buffer should be mapped as read-only.  The default is
sl@0
   319
	                    that of pool in the clients address space.
sl@0
   320
sl@0
   321
	@return KErrNone if successful, otherwise one of the system-wide error codes.
sl@0
   322
	*/
sl@0
   323
	IMPORT_C TInt Map(TBool aReadOnly = EFalse);
sl@0
   324
sl@0
   325
	/**
sl@0
   326
	Unmaps the buffer from the calling process's virtual address space.
sl@0
   327
sl@0
   328
	@return KErrNone if successful, otherwise one of the system-wide error codes.
sl@0
   329
	*/
sl@0
   330
	IMPORT_C TInt UnMap();
sl@0
   331
sl@0
   332
	/**
sl@0
   333
	@return The size, in bytes, of this buffer (and every other buffer in the pool).
sl@0
   334
	*/
sl@0
   335
	IMPORT_C TUint Size();
sl@0
   336
sl@0
   337
	/**
sl@0
   338
	@return A pointer to the start of the buffer.
sl@0
   339
	*/
sl@0
   340
	IMPORT_C TUint8* Ptr();
sl@0
   341
sl@0
   342
private:
sl@0
   343
	friend class RShPool;
sl@0
   344
	TLinAddr iBase;
sl@0
   345
	TUint iSize;
sl@0
   346
	TUint iSpare1;
sl@0
   347
	TUint iSpare2;
sl@0
   348
	};
sl@0
   349
sl@0
   350
sl@0
   351
#endif	// E32SHBUF_H