Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Massive cleanups in ruby. Not yet working (segfault on task reception)
[simgrid.git] / src / msg / msg_mailbox.c
1 #include "mailbox.h"
2 #include "msg/private.h"
3
4 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_mailbox, msg,
5                                 "Logging specific to MSG (mailbox)");
6
7 static xbt_dict_t msg_mailboxes = NULL;
8
9 void MSG_mailbox_mod_init(void)
10 {
11   msg_mailboxes = xbt_dict_new();
12 }
13
14 void MSG_mailbox_mod_exit(void)
15 {
16   xbt_dict_free(&msg_mailboxes);
17 }
18
19 msg_mailbox_t MSG_mailbox_create(const char *alias)
20 {
21   msg_mailbox_t mailbox = xbt_new0(s_msg_mailbox_t, 1);
22
23   mailbox->cond = NULL;
24   mailbox->alias = alias ? xbt_strdup(alias) : NULL;
25   mailbox->rdv = SIMIX_rdv_create(alias);
26   
27   return mailbox;
28 }
29
30 msg_mailbox_t MSG_mailbox_new(const char *alias)
31 {
32   msg_mailbox_t mailbox = MSG_mailbox_create(alias);
33
34   /* add the mbox in the dictionary */
35   xbt_dict_set(msg_mailboxes, alias, mailbox, MSG_mailbox_free);
36
37   return mailbox;
38 }
39
40 void MSG_mailbox_free(void *mailbox)
41 {
42   msg_mailbox_t _mailbox = (msg_mailbox_t) mailbox;
43
44   free(_mailbox->alias);
45   SIMIX_rdv_destroy(_mailbox->rdv);
46   
47   free(_mailbox);
48 }
49
50 smx_cond_t MSG_mailbox_get_cond(msg_mailbox_t mailbox)
51 {
52   return mailbox->cond;
53 }
54
55 int MSG_mailbox_is_empty(msg_mailbox_t mailbox)
56 {
57   return (NULL == SIMIX_rdv_get_head(mailbox->rdv));
58 }
59
60 m_task_t MSG_mailbox_get_head(msg_mailbox_t mailbox)
61 {
62   smx_comm_t comm = SIMIX_rdv_get_head(mailbox->rdv);
63
64   if(!comm)
65     return NULL; 
66   
67   return (m_task_t)SIMIX_communication_get_data(comm);
68 }
69
70 int
71 MSG_mailbox_get_count_host_waiting_tasks(msg_mailbox_t mailbox, m_host_t host)
72 {
73   return SIMIX_rdv_get_count_waiting_comm (mailbox->rdv, host->simdata->smx_host);
74 }
75
76 void MSG_mailbox_set_cond(msg_mailbox_t mailbox, smx_cond_t cond)
77 {
78   mailbox->cond = cond;
79 }
80
81 const char *MSG_mailbox_get_alias(msg_mailbox_t mailbox)
82 {
83   return mailbox->alias;
84 }
85
86 msg_mailbox_t MSG_mailbox_get_by_alias(const char *alias)
87 {
88
89   msg_mailbox_t mailbox = xbt_dict_get_or_null(msg_mailboxes, alias);
90
91   if (!mailbox)
92     mailbox = MSG_mailbox_new(alias);
93
94   return mailbox;
95 }
96
97 msg_mailbox_t MSG_mailbox_get_by_channel(m_host_t host, m_channel_t channel)
98 {
99   xbt_assert0((host != NULL), "Invalid host");
100   xbt_assert1((channel >= 0)
101               && (channel < msg_global->max_channel), "Invalid channel %d",
102               channel);
103
104   return host->simdata->mailboxes[(size_t) channel];
105 }
106
107 MSG_error_t
108 MSG_mailbox_get_task_ext(msg_mailbox_t mailbox, m_task_t *task, m_host_t host,
109                          double timeout)
110 {
111   xbt_ex_t e;
112   MSG_error_t ret = MSG_OK;
113   smx_comm_t comm;
114   CHECK_HOST();
115
116   memset(&comm,0,sizeof(comm));
117   /* Kept for compatibility with older implementation */
118   xbt_assert1(!MSG_mailbox_get_cond(mailbox),
119               "A process is already blocked on this channel %s", 
120               MSG_mailbox_get_alias(mailbox));
121
122   /* Sanity check */
123   xbt_assert0(task, "Null pointer for the task storage");
124
125   if (*task)
126     CRITICAL0
127       ("MSG_task_get() was asked to write in a non empty task struct.");
128
129   /* We no longer support getting a task from a specific host */
130   if(host)
131     THROW_UNIMPLEMENTED;
132
133   /* Try to receive it by calling SIMIX network layer */
134   TRY{
135     SIMIX_network_recv(mailbox->rdv, timeout, task, NULL, &comm);
136     (*task)->simdata->refcount--;
137   }
138   CATCH(e){
139     switch(e.category){
140       case host_error:
141         ret = MSG_HOST_FAILURE;
142         break;
143       case network_error:
144         ret = MSG_TRANSFER_FAILURE;
145         break;
146       case timeout_error:
147         ret = MSG_TIMEOUT_FAILURE;
148         break;      
149       default:
150         xbt_die("Unhandled SIMIX network exception");
151     }
152     xbt_ex_free(e);        
153   }
154   
155   MSG_RETURN(ret);        
156 }
157
158 MSG_error_t
159 MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task,
160                              double timeout)
161 {
162   xbt_ex_t e;
163   MSG_error_t ret = MSG_OK;
164   simdata_task_t t_simdata = NULL;
165   m_process_t process = MSG_process_self();
166   
167   CHECK_HOST();
168
169   /* Prepare the task to send */
170   t_simdata = task->simdata;
171   t_simdata->sender = process;
172   t_simdata->source = MSG_host_self();
173
174   xbt_assert0(t_simdata->refcount == 1,
175               "This task is still being used somewhere else. You cannot send it now. Go fix your code!");
176
177   t_simdata->refcount++;
178   msg_global->sent_msg++;
179
180   process->simdata->waiting_task = task;
181   
182   /* Try to send it by calling SIMIX network layer */
183   TRY{
184     /* Kept for semantical compatibility with older implementation */
185     if(mailbox->cond)
186       SIMIX_cond_signal(mailbox->cond);
187
188     SIMIX_network_send(mailbox->rdv, t_simdata->message_size, t_simdata->rate,
189                        timeout, &task, sizeof(void*), &t_simdata->comm, task);
190   }
191
192   CATCH(e){
193     switch(e.category){
194       case host_error:
195         ret = MSG_HOST_FAILURE;
196         break;
197       case network_error:
198         ret = MSG_TRANSFER_FAILURE;
199         break;
200       case timeout_error:
201         ret = MSG_TIMEOUT_FAILURE;
202         break;
203       default:
204         xbt_die("Unhandled SIMIX network exception");
205     }
206     xbt_ex_free(e);
207
208     /* Decrement the refcount only on failure */
209     t_simdata->refcount--;
210   }
211
212   process->simdata->waiting_task = NULL;
213    
214   MSG_RETURN(ret);        
215 }