Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent include and src using this command:
[simgrid.git] / src / gras / Transport / sg_transport.c
1 /* sg_transport - SG specific functions for transport                       */
2
3 /* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "xbt/ex.h"
10 #include "gras/Transport/transport_private.h"
11 #include "gras/Virtu/virtu_sg.h"
12
13 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_trp);
14
15 /* check transport_private.h for an explanation of this variable;
16  * this just need to be defined to NULL in SG */
17 gras_socket_t _gras_lastly_selected_socket = NULL;
18
19 #ifdef KILLME
20 /**     
21  * gras_trp_select:
22  *
23  * Returns the next socket to service having a message awaiting.
24  *
25  * if timeout<0, we ought to implement the adaptative timeout (FIXME)
26  *
27  * if timeout=0, do not wait for new message, only handle the ones already there.
28  *
29  * if timeout>0 and no message there, wait at most that amount of time before giving up.
30  */
31 gras_socket_t gras_trp_select(double timeout)
32 {
33   gras_socket_t res;
34   gras_trp_procdata_t pd =
35       (gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id);
36   gras_trp_sg_sock_data_t *sockdata;
37   gras_trp_plugin_t trp;
38   gras_socket_t active_socket = NULL;
39   gras_trp_sg_sock_data_t *active_socket_data;
40   gras_socket_t sock_iter;      /* iterating over all sockets */
41   unsigned int cursor;
42
43   DEBUG3("select on %s@%s with timeout=%f",
44          SIMIX_process_get_name(SIMIX_process_self()),
45          SIMIX_host_get_name(SIMIX_host_self()), timeout);
46   if (timeout >= 0) {
47     xbt_queue_shift_timed(pd->msg_selectable_sockets,
48                           &active_socket, timeout);
49   } else {
50     xbt_queue_shift(pd->msg_selectable_sockets, &active_socket);
51   }
52
53   if (active_socket == NULL) {
54     DEBUG0("TIMEOUT");
55     THROW0(timeout_error, 0, "Timeout");
56   }
57   active_socket_data = (gras_trp_sg_sock_data_t *) active_socket->data;
58
59   /* Ok, got something. Open a socket back to the expeditor */
60
61   /* Try to reuse an already openned socket to that expeditor */
62   DEBUG1("Open sockets size %lu", xbt_dynar_length(pd->sockets));
63   xbt_dynar_foreach(pd->sockets, cursor, sock_iter) {
64     gras_trp_sg_sock_data_t *sock_data;
65     DEBUG1("Consider %p as outgoing socket to expeditor", sock_iter);
66
67     if (sock_iter->meas || !sock_iter->outgoing)
68       continue;
69     sock_data = ((gras_trp_sg_sock_data_t *) sock_iter->data);
70
71     if ((sock_data->to_socket == active_socket) &&
72         (sock_data->to_host ==
73          SIMIX_process_get_host(active_socket_data->from_process))) {
74       xbt_dynar_cursor_unlock(pd->sockets);
75       return sock_iter;
76     }
77   }
78
79   /* Socket to expeditor not created yet */
80   DEBUG0("Create a socket to the expeditor");
81
82   trp = gras_trp_plugin_get_by_name("sg");
83
84   gras_trp_socket_new(1, &res);
85   res->plugin = trp;
86
87   res->incoming = 1;
88   res->outgoing = 1;
89   res->accepting = 0;
90   res->sd = -1;
91
92   res->port = -1;
93
94   /* initialize the ports */
95   //res->peer_port = active_socket->port;
96   res->port = active_socket->peer_port;
97
98   /* create sockdata */
99   sockdata = xbt_new(gras_trp_sg_sock_data_t, 1);
100   sockdata->from_process = SIMIX_process_self();
101   sockdata->to_process = active_socket_data->from_process;
102
103   res->peer_port = ((gras_trp_procdata_t)
104                     gras_libdata_by_name_from_remote("gras_trp",
105                                                      sockdata->to_process))->
106       myport;
107   sockdata->to_socket = active_socket;
108   /*update the peer to_socket  variable */
109   active_socket_data->to_socket = res;
110   sockdata->cond = SIMIX_cond_init();
111   sockdata->mutex = SIMIX_mutex_init();
112
113   sockdata->to_host =
114       SIMIX_process_get_host(active_socket_data->from_process);
115
116   res->data = sockdata;
117   res->peer_name = strdup(SIMIX_host_get_name(sockdata->to_host));
118
119   gras_trp_buf_init_sock(res);
120
121   DEBUG4("Create socket to process:%s(Port %d) from process: %s(Port %d)",
122          SIMIX_process_get_name(sockdata->from_process),
123          res->peer_port,
124          SIMIX_process_get_name(sockdata->to_process), res->port);
125
126   return res;
127 }
128 #endif
129
130 /* dummy implementations of the functions used in RL mode */
131
132 void gras_trp_tcp_setup(gras_trp_plugin_t plug)
133 {
134   THROW0(mismatch_error, 0, NULL);
135 }
136
137 void gras_trp_file_setup(gras_trp_plugin_t plug)
138 {
139   THROW0(mismatch_error, 0, NULL);
140 }
141
142 void gras_trp_iov_setup(gras_trp_plugin_t plug)
143 {
144   THROW0(mismatch_error, 0, NULL);
145 }
146
147 gras_socket_t gras_trp_buf_init_sock(gras_socket_t sock)
148 {
149   return sock;
150 }