Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please clang and remove useless field
[simgrid.git] / doc / msg-tuto-src / masterworker0.c
1 /* Copyright (c) 2007-2017. 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_test, "Messages specific for this msg example");
9
10 #define FINALIZE ((void*)221297)        /* a magic number to tell people to stop working */
11
12 /** Master expects 3+ arguments given in the XML deployment file: */
13 static int master(int argc, char *argv[])
14 {
15   long number_of_tasks = xbt_str_parse_int(argv[1], "Invalid amount of tasks: %s");    /** - Number of tasks      */
16   double comp_size = xbt_str_parse_double(argv[2], "Invalid computational size: %s");  /** - Task compute cost    */
17   double comm_size = xbt_str_parse_double(argv[3], "Invalid communication size: %s");  /** - Task communication size */
18
19   /* Create the tasks in advance */
20   msg_task_t* todo = xbt_new0(msg_task_t, number_of_tasks);
21
22   for (int i = 0; i < number_of_tasks; i++) {
23     char sprintf_buffer[64];
24     sprintf(sprintf_buffer, "Task_%d", i);
25     todo[i] = MSG_task_create(sprintf_buffer, comp_size, comm_size, NULL);
26   }
27
28   /* Get the info about the worker processes from my parameters */
29   int workers_count   = argc - 4;
30   msg_host_t* workers = xbt_new0(msg_host_t, workers_count);
31
32   for (int i = 4; i < argc; i++) {
33     workers[i - 4] = MSG_get_host_by_name(argv[i]);
34     xbt_assert(workers[i - 4] != NULL, "Unknown host %s. Stopping Now! ", argv[i]);
35   }
36   XBT_INFO("Got %d workers and %ld tasks to process", workers_count, number_of_tasks);
37
38   /* Dispatch the tasks */
39   for (int i = 0; i < number_of_tasks; i++) {
40     XBT_INFO("Sending '%s' to '%s'", todo[i]->name, MSG_host_get_name(workers[i % workers_count]));
41     if (MSG_host_self() == workers[i % workers_count]) {
42       XBT_INFO("Hey ! It's me ! :)");
43     }
44
45     MSG_task_send(todo[i], MSG_host_get_name(workers[i % workers_count]));
46     XBT_INFO("Sent");
47   }
48
49   XBT_INFO("All tasks have been dispatched. Let's tell everybody the computation is over.");
50   for (int i = 0; i < workers_count; i++) {
51     msg_task_t finalize = MSG_task_create("finalize", 0, 0, FINALIZE);
52     MSG_task_send(finalize, MSG_host_get_name(workers[i]));
53   }
54
55   XBT_INFO("Goodbye now!");
56   free(workers);
57   free(todo);
58   return 0;
59 }
60
61 /** Worker expects a single argument given in the XML deployment file: */
62 static int worker(int argc, char *argv[])
63 {
64   while (1) {
65     msg_task_t task = NULL;
66     int res         = MSG_task_receive(&(task), MSG_host_get_name(MSG_host_self()));
67     xbt_assert(res == MSG_OK, "MSG_task_receive failed");
68
69     XBT_INFO("Received '%s'", MSG_task_get_name(task));
70     if (!strcmp(MSG_task_get_name(task), "finalize")) {
71       MSG_task_destroy(task);
72       break;
73     }
74
75     XBT_INFO("Processing \"%s\"", MSG_task_get_name(task));
76     MSG_task_execute(task);
77     XBT_INFO("'%s' done", MSG_task_get_name(task));
78     MSG_task_destroy(task);
79   }
80   XBT_INFO("I'm done. See you!");
81   return 0;
82 }                               /* end_of_worker */
83
84 /** Main function */
85 int main(int argc, char *argv[])
86 {
87
88   MSG_init(&argc, argv);
89   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
90              "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
91
92   /*  Create a simulated platform */
93   MSG_create_environment(argv[1]);
94
95   /*   Application deployment */
96   MSG_function_register("master", master);
97   MSG_function_register("worker", worker);
98   MSG_launch_application(argv[2]);
99
100   /* Run the simulation */
101   msg_error_t res = MSG_main();
102
103   XBT_INFO("Simulation time %g", MSG_get_clock());
104   return (res != MSG_OK);
105 }                               /* end_of_main */