Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
adaa618c154d8f82efb6ba0a9f5eb6652b6f1f86
[simgrid.git] / src / gras / Msg / sg_msg.c
1 /* $Id$ */
2
3 /* messaging - Function related to messaging code specific to SG            */
4
5 /* Copyright (c) 2003-2005 Martin Quinson. All rights reserved.             */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "xbt/ex.h"
11
12 #include "gras/Virtu/virtu_sg.h"
13
14 #include "gras/Msg/msg_private.h"
15
16 #include "gras/DataDesc/datadesc_interface.h"
17 #include "gras/Transport/transport_interface.h" /* gras_trp_chunk_send/recv */
18 #include "gras/Transport/transport_private.h" /* sock->data */
19
20 /** \brief Send the data pointed by \a payload as a message of type
21  * \a msgtype to the peer \a sock */
22 void
23 gras_msg_send(gras_socket_t   sock,
24               gras_msgtype_t  msgtype,
25               void           *payload) {
26
27   m_task_t task=NULL;
28   gras_trp_sg_sock_data_t *sock_data = (gras_trp_sg_sock_data_t *)sock->data;
29   gras_msg_t msg;
30   int whole_payload_size=0; /* msg->payload_size is used to memcpy the payload. 
31                                This is used to report the load onto the simulator. It also counts the size of pointed stuff */
32
33   xbt_assert1(!gras_socket_is_meas(sock), 
34               "Asked to send a message on the measurement socket %p", sock);
35
36   msg=xbt_new0(s_gras_msg_t,1);
37   msg->type=msgtype;
38
39    
40   msg->payload_size=gras_datadesc_size(msgtype->ctn_type);
41   msg->payload=xbt_malloc(gras_datadesc_size(msgtype->ctn_type));
42   if (msgtype->ctn_type)
43     whole_payload_size = gras_datadesc_copy(msgtype->ctn_type,payload,msg->payload);
44
45   task=MSG_task_create(msgtype->name,0,
46                        ((double)msg->payload_size)/(1024.0*1024.0),msg);
47
48   if (MSG_task_put(task, sock_data->to_host,sock_data->to_chan) != MSG_OK) 
49     THROW0(system_error,0,"Problem during the MSG_task_put");
50
51 }
52 /*
53  * receive the next message on the given socket.  
54  */
55 void
56 gras_msg_recv(gras_socket_t    sock,
57               gras_msgtype_t  *msgtype,
58               void           **payload,
59               int             *payload_size) {
60
61   m_task_t task=NULL;
62   gras_msg_t msg;
63   gras_trp_procdata_t pd=(gras_trp_procdata_t)gras_libdata_by_name("gras_trp");
64
65   xbt_assert1(!gras_socket_is_meas(sock), 
66               "Asked to receive a message on the measurement socket %p", sock);
67
68   if (MSG_task_get(&task, pd->chan) != MSG_OK)
69     THROW0(system_error,0,"Error in MSG_task_get()");
70
71   msg = MSG_task_get_data(task);
72   *msgtype = gras_msgtype_by_id(msg->type->code);
73   *payload = msg->payload;
74   *payload_size = msg->payload_size;
75
76   free(msg);
77   if (MSG_task_destroy(task) != MSG_OK)
78     THROW0(system_error,0,"Error in MSG_task_destroy()");
79 }