Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
97e612e17823cf2ee413b408e5aef1d24e3eea0a
[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 XBT_LOG_EXTERNAL_CATEGORY(gras_msg);
21 XBT_LOG_DEFAULT_CATEGORY(gras_msg);
22
23 void gras_msg_send_ext(gras_socket_t   sock,
24                      e_gras_msg_kind_t kind,
25                        unsigned long int ID,
26                        gras_msgtype_t  msgtype,
27                        void           *payload) {
28
29   m_task_t task=NULL;
30   gras_trp_sg_sock_data_t *sock_data = (gras_trp_sg_sock_data_t *)sock->data;
31   gras_msg_t msg;
32   int whole_payload_size=0; /* msg->payload_size is used to memcpy the payload. 
33                                This is used to report the load onto the simulator. It also counts the size of pointed stuff */
34
35   xbt_assert1(!gras_socket_is_meas(sock), 
36               "Asked to send a message on the measurement socket %p", sock);
37
38   msg=xbt_new0(s_gras_msg_t,1);
39   msg->type=msgtype;
40   msg->ID = ID;
41    
42   if (kind == e_gras_msg_kind_rpcerror) {
43      /* error on remote host, carfull, payload is an exception */
44     msg->payl_size=gras_datadesc_size(gras_datadesc_by_name("ex_t"));
45     msg->payl=xbt_malloc(msg->payl_size);
46     whole_payload_size = gras_datadesc_copy(gras_datadesc_by_name("ex_t"),
47                                             payload,msg->payl);
48   } else {
49     msg->payl_size=gras_datadesc_size(msgtype->ctn_type);
50     msg->payl=xbt_malloc(msg->payl_size);
51     if (msgtype->ctn_type)
52       whole_payload_size = gras_datadesc_copy(msgtype->ctn_type,
53                                               payload, msg->payl);
54   }
55
56   msg->kind = kind;
57
58   task=MSG_task_create(msgtype->name,0,
59                        ((double)whole_payload_size)/(1024.0*1024.0),msg);
60
61   if (MSG_task_put(task, sock_data->to_host,sock_data->to_chan) != MSG_OK) 
62     THROW0(system_error,0,"Problem during the MSG_task_put");
63
64   VERB3("Sent a message type '%s' kind '%s' ID %lu",
65         msg->type->name,
66         e_gras_msg_kind_names[msg->kind],
67         msg->ID);
68 }
69 /*
70  * receive the next message on the given socket.  
71  */
72 void
73 gras_msg_recv(gras_socket_t    sock,
74               gras_msg_t       msg) {
75
76   m_task_t task=NULL;
77   gras_msg_t msg_got;
78   gras_trp_procdata_t pd=(gras_trp_procdata_t)gras_libdata_by_name("gras_trp");
79
80   xbt_assert1(!gras_socket_is_meas(sock), 
81               "Asked to receive a message on the measurement socket %p", sock);
82
83   xbt_assert0(msg,"msg is an out parameter of gras_msg_recv...");
84
85
86   if (MSG_task_get(&task, pd->chan) != MSG_OK)
87     THROW0(system_error,0,"Error in MSG_task_get()");
88
89   msg_got=MSG_task_get_data(task);
90
91
92   msg_got->expe= msg->expe;
93   memcpy(msg,msg_got,sizeof(s_gras_msg_t));
94
95   free(msg_got);
96   if (MSG_task_destroy(task) != MSG_OK)
97     THROW0(system_error,0,"Error in MSG_task_destroy()");
98
99   VERB3("Received a message type '%s' kind '%s' ID %lu",// from %s",
100         msg->type->name,
101         e_gras_msg_kind_names[msg->kind],
102         msg->ID);
103   //    gras_socket_peer_name(msg->expe));
104 }