Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Making MSG fade away (part 1)
[simgrid.git] / teshsuite / 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   xbt_assert(argc == 0, "The relay_runner function does not accept any parameter from the XML deployment file");
14   int rank = xbt_str_parse_int(MSG_process_get_name(MSG_process_self()),
15                                "Any process of this example must have a numerical name, not %s");
16   char mailbox[256];
17
18   if (rank == 0) {
19     /* The root process (rank 0) first sends the token then waits to receive it back */
20     snprintf(mailbox, 255, "%d", rank + 1);
21     unsigned int task_comm_size = 1000000; /* The token is 1MB long*/
22     msg_task_t task             = MSG_task_create("Token", 0, task_comm_size, NULL);
23     XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"", rank, task->name, mailbox);
24     MSG_task_send(task, mailbox);
25     task    = NULL;
26     int res = MSG_task_receive(&task, MSG_process_get_name(MSG_process_self()));
27     xbt_assert(res == MSG_OK, "MSG_task_get failed");
28     XBT_INFO("Host \"%d\" received \"%s\"", rank, MSG_task_get_name(task));
29     MSG_task_destroy(task);
30
31   } else {
32     /* The others processes receive from their left neighbor (rank-1) and send to their right neighbor (rank+1) */
33     msg_task_t task = NULL;
34     int res         = MSG_task_receive(&task, MSG_process_get_name(MSG_process_self()));
35     xbt_assert(res == MSG_OK, "MSG_task_get failed");
36     XBT_INFO("Host \"%d\" received \"%s\"", rank, MSG_task_get_name(task));
37
38     if (rank + 1 == MSG_get_host_number())
39       /* But the last process, which sends the token back to rank 0 */
40       snprintf(mailbox, 255, "0");
41     else
42       snprintf(mailbox, 255, "%d", rank + 1);
43     XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"", rank, task->name, mailbox);
44     MSG_task_send(task, mailbox);
45   }
46   return 0;
47 }
48
49 int main(int argc, char* argv[])
50 {
51   MSG_init(&argc, argv);
52   xbt_assert(argc > 1, "Usage: %s platform.xml\n", argv[0]);
53   MSG_create_environment(argv[1]); /* - Load the platform description */
54   xbt_dynar_t hosts = MSG_hosts_as_dynar();
55
56   XBT_INFO("Number of hosts '%lu'", MSG_get_host_number());
57   unsigned int i;
58   msg_host_t h;
59   xbt_dynar_foreach (hosts, i,
60                      h) { /* - Give a unique rank to each host and create a @ref relay_runner process on each */
61     char* name_host = bprintf("%u", i);
62     MSG_process_create(name_host, relay_runner, NULL, h);
63     free(name_host);
64   }
65   xbt_dynar_free(&hosts);
66
67   int res = MSG_main(); /* - Run the simulation */
68   XBT_INFO("Simulation time %g", MSG_get_clock());
69   return res != MSG_OK;
70 }