isolationserver/messagequeue/src/msgqsend.c
branchRCL_3
changeset 11 3404599e4dda
parent 9 46cc8e302e43
equal deleted inserted replaced
9:46cc8e302e43 11:3404599e4dda
     1 /** 
       
     2  *  @file MsgQSend.cpp
       
     3  *  Description: Source file for MsgQLib's MsgQSend API
       
     4  *  Copyright (c) 2007 Nokia Corporation.
       
     5 *  All rights reserved.
       
     6 *  Redistribution and use in source and binary forms, with or without modification, 
       
     7 *  are permitted provided that the following conditions are met:
       
     8 *  Redistributions of source code must retain the above copyright notice, this list 
       
     9 *  of conditions and the following disclaimer.Redistributions in binary form must 
       
    10 *  reproduce the above copyright notice, this list of conditions and the following 
       
    11 *  disclaimer in the documentation and/or other materials provided with the distribution.
       
    12 *  Neither the name of the Nokia Corporation nor the names of its contributors may be used 
       
    13 *  to endorse or promote products derived from this software without specific prior written 
       
    14 *  permission.
       
    15 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
       
    16 *  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 
       
    17 *  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
       
    18 *  SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
       
    19 *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
       
    20 *  OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
       
    21 *  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
       
    22 *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
       
    23 *  EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
       
    24  */
       
    25 
       
    26 #include <errno.h>
       
    27 #include <sys/msg.h>
       
    28 #include <sys/sem.h>
       
    29 #include <string.h>
       
    30 #include <msgqlib.h>
       
    31 
       
    32 #include <msgqinternal.h>
       
    33 
       
    34 /*******************************************************************************
       
    35 * MsgQSend (qName, msg, nBytes, priority, timeout, err)
       
    36 * Description:  Function for sending a message with internal copy
       
    37 *********************************************************************************/
       
    38 
       
    39 EXPORT_C int MsgQSend(ULONG qName, char* msg, ULONG nBytes, ULONG priority, int timeout, int* err)
       
    40 {
       
    41 	int         qId;
       
    42 	struct {
       
    43 		long mtype;
       
    44 		char mtext[MAX_MSG_LEN];
       
    45 	} message;
       
    46 
       
    47 	/* check parameters */
       
    48 	if ((priority == MSG_PRI_NORMAL) || (priority == MSG_PRI_URGENT)) {
       
    49 	
       
    50 		if((qId = msgget((key_t) qName ,IPC_CREAT | 0666 /*| IPC_EXCL */ )) >=0 ) {
       
    51 			
       
    52 				if( 1 ) {
       
    53 					message.mtype = 1;
       
    54 					bcopy(msg, message.mtext, nBytes);
       
    55 					message.mtext[nBytes] = '\0';
       
    56 
       
    57 					if(msgsnd (qId, &message, (size_t)nBytes+4, timeout) == OK) {
       
    58 						*err = OK;
       
    59 						/* After successfull send, unlock the message queue by using post operation on semaphore.*/
       
    60 						return (OK);
       
    61 					}
       
    62 					else {
       
    63 						*err = errno;
       
    64 					}
       
    65 				}
       
    66 				else
       
    67 					*err = errno;
       
    68 		}
       
    69 		else
       
    70 			*err = KMsgQLibQIdErr;
       
    71 	}
       
    72 	else
       
    73 		*err = KMsgQLibParamErr;
       
    74 
       
    75 	return(ERROR);
       
    76 }
       
    77