Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
75d2d4e91121b70d403414a74faf20a5f1a1736e
[simgrid.git] / src / gras / Transport / sg_transport.c
1 /* $Id$ */
2
3 /* sg_transport - SG specific functions for transport                       */
4
5 /* Authors: Martin Quinson                                                  */
6 /* Copyright (C) 2004 Martin Quinson.                                       */
7
8 /* This program is free software; you can redistribute it and/or modify it
9    under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #include "gras/Transport/transport_private.h"
12 #include <msg.h>
13 #include "gras/Virtu/virtu_sg.h"
14
15 XBT_LOG_EXTERNAL_CATEGORY(transport);
16 XBT_LOG_DEFAULT_CATEGORY(transport);
17
18 /**
19  * gras_trp_select:
20  *
21  * Returns the next socket to service having a message awaiting.
22  *
23  * if timeout<0, we ought to implement the adaptative timeout (FIXME)
24  *
25  * if timeout=0, do not wait for new message, only handle the ones already there.
26  *
27  * if timeout>0 and no message there, wait at most that amount of time before giving up.
28  */
29 xbt_error_t 
30 gras_trp_select(double timeout, 
31                 gras_socket_t *dst) {
32
33   xbt_error_t errcode;
34   double startTime=gras_os_time();
35   gras_procdata_t *pd=gras_procdata_get();
36   gras_trp_sg_sock_data_t *sockdata;
37   gras_trp_plugin_t *trp;
38
39   gras_socket_t sock_iter; /* iterating over all sockets */
40   int cursor,cpt;
41
42   gras_sg_portrec_t pr;     /* iterating to find the chanel of expeditor */
43
44   int r_pid;
45   gras_hostdata_t *remote_hd;
46
47   DEBUG3("select on %s@%s with timeout=%f",
48          MSG_process_get_name(MSG_process_self()),
49          MSG_host_get_name(MSG_host_self()),
50          timeout);
51   do {
52     r_pid = MSG_task_probe_from((m_channel_t) pd->chan);
53     if (r_pid >= 0) {
54       /* Try to reuse an already openned socket to that expeditor */
55       xbt_dynar_foreach(pd->sockets,cursor,sock_iter) {
56         DEBUG1("Consider %p as outgoing socket to expeditor",sock_iter);
57         sockdata = sock_iter->data;
58
59         if (sock_iter->raw || !sock_iter->outgoing)
60           continue;
61
62         if (sockdata->from_PID == r_pid) {
63           *dst=sock_iter;
64           return no_error;
65         }
66       }
67
68       /* Socket to expeditor not created yet */
69       DEBUG0("Create a socket to the expeditor");
70
71       TRY(gras_trp_plugin_get_by_name("buf",&trp));
72
73       gras_trp_socket_new(1,dst);
74       (*dst)->plugin   = trp;
75
76       (*dst)->incoming  = 1;
77       (*dst)->outgoing  = 1;
78       (*dst)->accepting = 0;
79       (*dst)->sd        = -1;
80
81       (*dst)->port      = -1;
82
83       sockdata = xbt_new(gras_trp_sg_sock_data_t,1);
84       sockdata->from_PID = MSG_process_self_PID();
85       sockdata->to_PID   = r_pid;
86       sockdata->to_host  = MSG_process_get_host(MSG_process_from_PID(r_pid));
87       (*dst)->data = sockdata;
88       gras_trp_buf_init_sock(*dst);
89
90       (*dst)->peer_name = strdup(MSG_host_get_name(sockdata->to_host));
91
92       remote_hd=(gras_hostdata_t *)MSG_host_get_data(sockdata->to_host);
93       xbt_assert0(remote_hd,"Run gras_process_init!!");
94
95       sockdata->to_chan = -1;
96       (*dst)->peer_port = -10;
97       for (cursor=0; cursor<XBT_MAX_CHANNEL; cursor++) {
98         if (remote_hd->proc[cursor] == r_pid) {
99           sockdata->to_chan = cursor;
100           DEBUG2("Chan %d on %s is for my pal",
101                  cursor,(*dst)->peer_name);
102
103           xbt_dynar_foreach(remote_hd->ports, cpt, pr) {
104             if (sockdata->to_chan == pr.tochan) {
105               if (pr.raw) {
106                 DEBUG0("Damn, it's raw");
107                 continue;
108               }
109
110               (*dst)->peer_port = pr.port;
111               DEBUG1("Cool, it points to port %d", pr.port);
112               break;
113             } else {
114               DEBUG2("Wrong port (tochan=%d, looking for %d)\n",
115                      pr.tochan,sockdata->to_chan);
116             }
117           }
118           if ((*dst)->peer_port == -10) {
119             /* was raw */
120             sockdata->to_chan = -1;
121           } else {
122             /* found it, don't let it override by raw */
123             break;
124           }
125         }
126       }
127       xbt_assert0(sockdata->to_chan != -1,
128                    "Got a message from a process without channel");
129
130       return no_error;
131     } else {
132       /*
133       DEBUG2("Select on %s@%s did not find anything yet",
134              MSG_process_get_name(MSG_process_self()),
135              MSG_host_get_name(MSG_host_self()));
136       */
137       /* MSG_process_sleep(1); */
138       MSG_process_sleep(0.001);
139     }
140   } while (gras_os_time()-startTime < timeout
141            || MSG_task_Iprobe((m_channel_t) pd->chan));
142
143   return timeout_error;
144
145 }
146
147   
148 /* dummy implementations of the functions used in RL mode */
149
150 xbt_error_t gras_trp_tcp_setup(gras_trp_plugin_t *plug) {
151   return mismatch_error;
152 }
153 xbt_error_t gras_trp_file_setup(gras_trp_plugin_t *plug) {
154   return mismatch_error;
155 }
156
157
158