Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge conflicts in instr_routing.c
[simgrid.git] / examples / msg / token_ring / token_bypass.c
1 /* Copyright (c) 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "msg/msg.h"
10 #include "surf/surf_private.h"
11
12 int host(int argc, char *argv[]);
13 unsigned int task_comp_size = 50000000;
14 unsigned int task_comm_size = 1000000;
15
16 int nb_hosts; /* All declared hosts */
17
18 XBT_LOG_NEW_DEFAULT_CATEGORY(ring,
19                              "Messages specific for this msg example");
20
21 /** @addtogroup MSG_examples
22  * 
23  *  @section MSG_ex_apps Examples of full applications
24  * 
25  * - <b>token_ring/token_bypass.c</b>: Classical token ring with a bypass deployment.
26  *   A token is exchanged along a ring to reach every participant.
27  * 
28  */
29
30 int host(int argc, char *argv[])
31 {
32   int host_number = atoi(MSG_process_get_name(MSG_process_self()));
33   char mailbox[256];
34   msg_task_t task = NULL;
35   _XBT_GNUC_UNUSED int res;
36   if (host_number == 0){ //master  send then receive
37     sprintf(mailbox, "%d", host_number+1);
38     task = MSG_task_create("Token", task_comp_size, task_comm_size, NULL);
39     XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"",host_number,task->name,mailbox);
40     MSG_task_send(task, mailbox);
41     task = NULL;
42     res = MSG_task_receive(&(task), MSG_process_get_name(MSG_process_self()));
43     xbt_assert(res == MSG_OK, "MSG_task_get failed");
44     XBT_INFO("Host \"%d\" received \"%s\"",host_number, MSG_task_get_name(task));
45     MSG_task_destroy(task);
46   }
47   else{ //slave receive then send
48     res = MSG_task_receive(&(task), MSG_process_get_name(MSG_process_self()));
49     xbt_assert(res == MSG_OK, "MSG_task_get failed");
50     XBT_INFO("Host \"%d\" received \"%s\"",host_number, MSG_task_get_name(task));
51
52     if(host_number+1 == nb_hosts)
53       sprintf(mailbox, "0");
54     else
55       sprintf(mailbox, "%d", host_number+1);
56     XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"",host_number,task->name,mailbox);
57     MSG_task_send(task, mailbox);
58   }
59   return 0;
60 }
61
62 static int surf_parse_bypass_platform(void)
63 {
64   sg_platf_begin();
65   s_sg_platf_AS_cbarg_t AS = SG_PLATF_AS_INITIALIZER;
66   AS.id = "AS0";
67   AS.routing = A_surfxml_AS_routing_Full;
68   sg_platf_new_AS_begin(&AS);
69
70   s_sg_platf_host_cbarg_t bob = SG_PLATF_HOST_INITIALIZER;
71   bob.id = "bob";
72   bob.power_peak = 98095000;
73   sg_platf_new_host(&bob);
74
75   s_sg_platf_host_cbarg_t alice = SG_PLATF_HOST_INITIALIZER;
76   alice.id = "alice";
77   alice.power_peak = 98095000;
78   sg_platf_new_host(&alice);
79
80   s_sg_platf_link_cbarg_t link = SG_PLATF_LINK_INITIALIZER;
81   link.id = "link1";
82   link.latency = 0.000278066;
83   link.bandwidth = 27946250;
84   sg_platf_new_link(&link);
85
86   s_sg_platf_route_cbarg_t route= SG_PLATF_ROUTE_INITIALIZER;
87   route.src = "bob";
88   route.dst = "alice";
89   sg_platf_route_begin(&route);
90   sg_platf_route_add_link("link1", &route);
91   sg_platf_route_end(&route);
92
93   sg_platf_new_AS_end();
94   sg_platf_end();
95   sg_platf_exit();
96   return 0;
97 }
98
99 int main(int argc, char **argv)
100 {
101   int i;
102   msg_error_t res = MSG_OK;
103
104   MSG_init(&argc, argv);
105   surf_parse = surf_parse_bypass_platform;
106   MSG_create_environment(NULL);
107
108   MSG_function_register("host", host);
109
110   xbt_dynar_t hosts = MSG_hosts_as_dynar();
111   nb_hosts =  xbt_dynar_length(hosts);
112
113   XBT_INFO("Number of host '%d'",nb_hosts);
114   for(i = 0 ; i<nb_hosts; i++)
115   {
116     char* name_host = bprintf("%d",i);
117     MSG_process_create( name_host, host, NULL, xbt_dynar_get_as(hosts,i,msg_host_t) );
118     free(name_host);
119   }
120   xbt_dynar_free(&hosts);
121
122   res = MSG_main();
123   XBT_INFO("Simulation time %g", MSG_get_clock());
124   MSG_clean();
125   if (res == MSG_OK)
126     return 0;
127   else
128     return 1;
129
130 }