os/kernelhwsrv/kernel/eka/include/e32msgqueue.inl
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2002-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/e32msgqueue.inl
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
sl@0
    21
template <typename T>
sl@0
    22
inline TInt RMsgQueue<T>::CreateLocal(TInt aSize, TOwnerType aOwner)
sl@0
    23
/**
sl@0
    24
Creates a message queue that is private to the current process,
sl@0
    25
and opens a handle to that message queue.
sl@0
    26
sl@0
    27
The size of each message in the queue is the size of the template
sl@0
    28
parameter type. 
sl@0
    29
This must conform to the restrictions imposed on the aMsgLength parameter
sl@0
    30
passed to the base class function RMsgQueueBase::CreateLocal().
sl@0
    31
sl@0
    32
@param aSize      The number of message 'slots' in the queue.
sl@0
    33
                  This must be a positive value, i.e. greater than zero.
sl@0
    34
@param aOwner     The type of handle to be created.
sl@0
    35
                  EOwnerProcess is the default value, if not explicitly specified.
sl@0
    36
sl@0
    37
@return KErrNone if the queue is created sucessfully, otherwise one of
sl@0
    38
        the other system wide error codes.
sl@0
    39
sl@0
    40
@panic KERN-EXEC 49 if aSize is less than or equal to zero.
sl@0
    41
@panic KERN-EXEC 48 if the size of the template parameter type is not
sl@0
    42
       a multiple of 4 bytes, is less than 4, or is greater than KMaxLength.
sl@0
    43
sl@0
    44
@see RMsgQueueBase::CreateLocal
sl@0
    45
@see KMaxLength
sl@0
    46
*/
sl@0
    47
	{return RMsgQueueBase::CreateLocal(aSize, sizeof(T), aOwner);}
sl@0
    48
sl@0
    49
sl@0
    50
sl@0
    51
sl@0
    52
template <typename T>
sl@0
    53
inline TInt RMsgQueue<T>::CreateGlobal(const TDesC& aName, TInt aSize, TOwnerType aOwner)
sl@0
    54
/**
sl@0
    55
Creates a global message queue, and opens a handle to that
sl@0
    56
message queue.
sl@0
    57
sl@0
    58
If the name is non-empty, the message queue is visible to all processes.
sl@0
    59
If the name is empty it cannot be opened or searched for by name, but a handle
sl@0
    60
to it can be passed to another process as a process parameter or via IPC.
sl@0
    61
sl@0
    62
The size of each message in the queue is the size of the template
sl@0
    63
parameter type. 
sl@0
    64
This must conform to the restrictions imposed on the aMsgLength parameter
sl@0
    65
passed to the base class function RMsgQueueBase::CreateGlobal().
sl@0
    66
sl@0
    67
@param aName  The name to be assigned to the message queue.
sl@0
    68
@param aSize  The number of message 'slots' in the queue.
sl@0
    69
              This must be a positive value, i.e. greater than zero.
sl@0
    70
@param aOwner The type of handle to be created.
sl@0
    71
              EOwnerProcess is the default value, if not explicitly specified.
sl@0
    72
sl@0
    73
@return KErrNone if the queue is created sucessfully, otherwise one of
sl@0
    74
        the other system wide error codes.
sl@0
    75
sl@0
    76
@panic KERN-EXEC 49 if aSize is less than or equal to zero.
sl@0
    77
@panic KERN-EXEC 48 if the size of the template parameter type is not
sl@0
    78
       a multiple of 4 bytes, is less than 4, or is greater than KMaxLength.
sl@0
    79
sl@0
    80
@see RMsgQueueBase::CreateGlobal
sl@0
    81
@see KMaxLength
sl@0
    82
*/
sl@0
    83
	{return RMsgQueueBase::CreateGlobal(aName, aSize, sizeof(T), aOwner);}
sl@0
    84
sl@0
    85
sl@0
    86
sl@0
    87
sl@0
    88
//realtime
sl@0
    89
template <typename T>
sl@0
    90
inline TInt RMsgQueue<T>::Send(const T& aMessage)
sl@0
    91
/**
sl@0
    92
sl@0
    93
Sends a message through this queue.
sl@0
    94
sl@0
    95
The function does not wait (i.e. block), if the queue is full.
sl@0
    96
sl@0
    97
The function is implemented through a call to 
sl@0
    98
RMsgQueueBase::Send().
sl@0
    99
  
sl@0
   100
@param aMessage The message data to be sent.
sl@0
   101
sl@0
   102
@return KErrNone, if successful;
sl@0
   103
        KErrOverflow, if queue is full,
sl@0
   104
sl@0
   105
@see RMsgQueueBase::Send
sl@0
   106
*/
sl@0
   107
	{return RMsgQueueBase::Send(&aMessage, sizeof(T));}
sl@0
   108
sl@0
   109
sl@0
   110
sl@0
   111
sl@0
   112
template <typename T>
sl@0
   113
inline void RMsgQueue<T>::SendBlocking(const T& aMessage)
sl@0
   114
/**
sl@0
   115
Sends a message through this queue, and waits for space to become available 
sl@0
   116
if the queue is full.
sl@0
   117
sl@0
   118
The function uses NotifySpaceAvailable() to provide the blocking operation. 
sl@0
   119
Note that it is not possible to cancel a call to SendBlocking().
sl@0
   120
sl@0
   121
The function is implemented through a call to 
sl@0
   122
RMsgQueueBase::SendBlocking().
sl@0
   123
sl@0
   124
@param aMessage The message data to be sent.
sl@0
   125
sl@0
   126
@see RMsgQueueBase::SendBlocking
sl@0
   127
*/
sl@0
   128
	{RMsgQueueBase::SendBlocking(&aMessage, sizeof(T));}
sl@0
   129
sl@0
   130
sl@0
   131
sl@0
   132
sl@0
   133
//realtime
sl@0
   134
template <typename T>
sl@0
   135
inline TInt RMsgQueue<T>::Receive(T& aMessage)
sl@0
   136
/**
sl@0
   137
sl@0
   138
Retrieves the first message in the queue.
sl@0
   139
sl@0
   140
The function does not wait (i.e. block), if the queue is empty.
sl@0
   141
sl@0
   142
The function is implemented through a call to 
sl@0
   143
RMsgQueueBase::Receive().
sl@0
   144
sl@0
   145
@param aMessage The object into which the message is retrieved.
sl@0
   146
sl@0
   147
@return KErrNone, ifsuccessful;
sl@0
   148
        KErrUnderflow, if the queue is empty.
sl@0
   149
sl@0
   150
@see RMsgQueueBase::Receive
sl@0
   151
*/
sl@0
   152
	{return RMsgQueueBase::Receive(&aMessage, sizeof(T));}
sl@0
   153
sl@0
   154
sl@0
   155
sl@0
   156
sl@0
   157
template <typename T>
sl@0
   158
inline void RMsgQueue<T>::ReceiveBlocking(T& aMessage)
sl@0
   159
/**
sl@0
   160
Retrieves the first message in the queue, and waits if the queue is empty.
sl@0
   161
sl@0
   162
The function uses NotifyDataAvailable() to provide the blocking operation.
sl@0
   163
Note it is not possible to cancel a call to ReceiveBlocking().
sl@0
   164
sl@0
   165
The function is implemented through a call to 
sl@0
   166
RMsgQueueBase::ReceiveBlocking().
sl@0
   167
sl@0
   168
@param aMessage The object into which the message is retrieved.
sl@0
   169
	
sl@0
   170
@see RMsgQueueBase::ReceiveBlocking
sl@0
   171
*/
sl@0
   172
	{RMsgQueueBase::ReceiveBlocking(&aMessage, sizeof(T));}
sl@0
   173