Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge if statements.
[simgrid.git] / teshsuite / msg / host_on_off / host_on_off.c
1 /* Copyright (c) 2010-2015. 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 "simgrid/msg.h"
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
10
11 static int slave(int argc, char *argv[])
12 {
13   msg_task_t task = NULL;
14   XBT_ATTRIB_UNUSED int res;
15   int id = -1;
16   const char * mailbox = "jupi";
17
18   while (1) {
19     res = MSG_task_receive(&(task), mailbox);
20     xbt_assert(res == MSG_OK, "MSG_task_get failed");
21
22     if (!strcmp(MSG_task_get_name(task), "finalize")) {
23       MSG_task_destroy(task);
24       break;
25     }
26     MSG_task_execute(task);
27     XBT_INFO("Task \"%s\" done", MSG_task_get_name(task));
28
29     MSG_task_destroy(task);
30     task = NULL;
31     id--;
32   }
33   XBT_INFO("I'm done. See you!");
34   return 0;
35 }
36
37 static int master(int argc, char *argv[])
38 {
39   double task_comp_size = 5E7;
40   double task_comm_size = 1E6;
41
42   const char * mailbox = "jupi";
43   msg_host_t jupiter = MSG_host_by_name("Jupiter");
44
45   msg_task_t task = MSG_task_create("task on", task_comp_size, task_comm_size, NULL);
46   XBT_INFO("Sending \"%s\"", task->name);
47   if (MSG_task_send_with_timeout(task, mailbox, 1) != MSG_OK)
48     MSG_task_destroy(task);
49
50   MSG_process_sleep(1);
51   MSG_host_off(jupiter);
52
53   task = MSG_task_create("task off", task_comp_size, task_comm_size, NULL);
54   XBT_INFO("Sending \"%s\"", task->name);
55   if (MSG_task_send_with_timeout(task, mailbox, 1) != MSG_OK)
56     MSG_task_destroy(task);
57
58   MSG_host_on(jupiter);
59
60   xbt_dynar_t jupi_processes = xbt_dynar_new(sizeof(msg_process_t), NULL);
61   MSG_host_get_process_list(jupiter, jupi_processes);
62   msg_process_t process = NULL;
63   unsigned int cursor;
64   xbt_dynar_foreach (jupi_processes, cursor, process) {
65     MSG_process_kill(process);
66   }
67   xbt_dynar_free(&jupi_processes);
68
69   task = MSG_task_create("task on without proc", task_comp_size, task_comm_size, NULL);
70   XBT_INFO("Sending \"%s\"", task->name);
71   if (MSG_task_send_with_timeout(task, mailbox, 1) != MSG_OK)
72     MSG_task_destroy(task);
73
74   char **argvF = xbt_new(char*, 2);
75   argvF[0] = xbt_strdup("slave");
76   MSG_process_create_with_arguments("slave", slave, NULL, MSG_host_by_name("Jupiter"), 1, argvF);
77
78   task = MSG_task_create("task on with proc", task_comp_size, task_comm_size, NULL);
79   XBT_INFO("Sending \"%s\"", task->name);
80   if (MSG_task_send_with_timeout(task, mailbox, 1) != MSG_OK)
81     MSG_task_destroy(task);
82
83   task = MSG_task_create("finalize", 0, 0, 0);
84   XBT_INFO("Sending \"%s\"", task->name);
85   if (MSG_task_send_with_timeout(task, mailbox, 1) != MSG_OK)
86     MSG_task_destroy(task);
87
88   XBT_INFO("Goodbye now!");
89   return 0;
90 }
91
92 int main(int argc, char *argv[])
93 {
94   msg_error_t res;
95
96   MSG_init(&argc, argv);
97   xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
98
99   MSG_create_environment(argv[1]);
100
101   MSG_process_create("master", master, NULL, MSG_get_host_by_name("Tremblay"));
102   MSG_process_create("slave", slave, NULL, MSG_get_host_by_name("Jupiter"));
103
104   res = MSG_main();
105
106   XBT_INFO("Simulation time %g", MSG_get_clock());
107
108   return res != MSG_OK;
109 }