Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics in the MSG version of app-token-ring
[simgrid.git] / examples / msg / app-token-ring / app-token-ring.c
1 /* Copyright (c) 2008-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/msg.h"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_app_token_ring, "Messages specific for this msg example");
9
10 /* Main function of all processes used in this example */
11 static int relay_runner(int argc, char *argv[])
12 {
13   unsigned int task_comm_size = 1000000; /* The token is 1MB long*/
14   int rank = xbt_str_parse_int(MSG_process_get_name(MSG_process_self()), "Any process of this example must have a numerical name, not %s");
15   char mailbox[256];
16
17   if (rank == 0) {
18     /* The root process (rank 0) first sends the token then waits to receive it back */
19     snprintf(mailbox,255, "%d", rank+1);
20     msg_task_t task = MSG_task_create("Token", 0, task_comm_size, NULL);
21     XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"", rank, task->name,mailbox);
22     MSG_task_send(task, mailbox);
23     task = NULL;
24     int res = MSG_task_receive(&(task), MSG_process_get_name(MSG_process_self()));
25     xbt_assert(res == MSG_OK, "MSG_task_get failed");
26     XBT_INFO("Host \"%d\" received \"%s\"", rank, MSG_task_get_name(task));
27     MSG_task_destroy(task);
28
29   } else {
30     /* The others processes receive from their left neighbor (rank-1) and send to their right neighbor (rank+1) */
31     msg_task_t task = NULL;
32     int res = MSG_task_receive(&(task), MSG_process_get_name(MSG_process_self()));
33     xbt_assert(res == MSG_OK, "MSG_task_get failed");
34     XBT_INFO("Host \"%d\" received \"%s\"",rank, MSG_task_get_name(task));
35
36     if (rank+1 == MSG_get_host_number())
37       /* But the last process, which sends the token back to rank 0 */
38       snprintf(mailbox,255, "0");
39     else
40       snprintf(mailbox,255, "%d", rank+1);
41     XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"",rank,task->name,mailbox);
42     MSG_task_send(task, mailbox);
43   }
44   return 0;
45 }
46
47 int main(int argc, char *argv[])
48 {
49   unsigned int i;
50   MSG_init(&argc, argv);
51   MSG_create_environment(argv[1]);       /* - Load the platform description */
52   xbt_dynar_t hosts = MSG_hosts_as_dynar();
53   msg_host_t h;
54
55   XBT_INFO("Number of hosts '%d'",MSG_get_host_number());
56   xbt_dynar_foreach (hosts, i, h){      /* - Give a unique rank to each host and create a @ref relay_runner process on each */
57     char* name_host = bprintf("%u",i);
58     MSG_process_create(name_host, relay_runner, NULL, h);
59     free(name_host);
60   }
61   xbt_dynar_free(&hosts);
62
63   int res = MSG_main();                 /* - Run the simulation */
64   XBT_INFO("Simulation time %g", MSG_get_clock());
65   return res != MSG_OK;
66 }