Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / examples / msg / app-masterworker / app-masterworker.c
1 /* Copyright (c) 2010-2019. 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 #include <stdio.h> /* snprintf */
9
10 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_app_masterworker, "Messages specific for this msg example");
11
12 /* Main function of the master process */
13 static int master(int argc, char *argv[])
14 {
15   xbt_assert(argc==5, "The master function expects 4 arguments from the XML deployment file");
16   long number_of_tasks = xbt_str_parse_int(argv[1], "Invalid amount of tasks: %s");    /* - Number of tasks      */
17   double comp_size = xbt_str_parse_double(argv[2], "Invalid computational size: %s");  /* - Task compute cost    */
18   double comm_size = xbt_str_parse_double(argv[3], "Invalid communication size: %s");  /* - Task communication size */
19   long workers_count = xbt_str_parse_int(argv[4], "Invalid amount of workers: %s");    /* - Number of workers    */
20
21   XBT_INFO("Got %ld workers and %ld tasks to process", workers_count, number_of_tasks);
22
23   for (int i = 0; i < number_of_tasks; i++) {  /* For each task to be executed: */
24     char mailbox[80];
25     char task_name[80];
26
27     snprintf(mailbox,79, "worker-%ld", i % workers_count); /* - Select a @ref worker in a round-robin way */
28     snprintf(task_name,79, "Task_%d", i);
29     msg_task_t task = MSG_task_create(task_name, comp_size, comm_size, NULL);   /* - Create a task */
30     if (number_of_tasks < 10000 || i % 10000 == 0)
31       XBT_INFO("Sending \"%s\" (of %ld) to mailbox \"%s\"", task->name, number_of_tasks, mailbox);
32
33     MSG_task_send(task, mailbox); /* - Send the task to the @ref worker */
34   }
35
36   XBT_INFO("All tasks have been dispatched. Let's tell everybody the computation is over.");
37   for (int i = 0; i < workers_count; i++) { /* - Eventually tell all the workers to stop by sending a "finalize" task */
38     char mailbox[80];
39
40     snprintf(mailbox,79, "worker-%ld", i % workers_count);
41     msg_task_t finalize = MSG_task_create("finalize", 0, 0, 0);
42     MSG_task_send(finalize, mailbox);
43   }
44
45   return 0;
46 }
47
48 /* Main functions of the Worker processes */
49 static int worker(int argc, char *argv[])
50 {
51   xbt_assert(argc==2, "The worker expects a single argument from the XML deployment file: its worker ID (its numerical rank)");
52   char mailbox[80];
53
54   long id= xbt_str_parse_int(argv[1], "Invalid argument %s");
55
56   snprintf(mailbox,79, "worker-%ld", id);
57
58   while (1) { /* The worker wait in an infinite loop for tasks sent by the @ref master */
59     msg_task_t task = NULL;
60     int res = MSG_task_receive(&task, mailbox);
61     xbt_assert(res == MSG_OK, "MSG_task_get failed");
62
63     if (strcmp(MSG_task_get_name(task), "finalize") == 0) {
64       MSG_task_destroy(task);  /* - Exit if 'finalize' is received */
65       break;
66     }
67     MSG_task_execute(task);    /*  - Otherwise, process the task */
68     MSG_task_destroy(task);
69   }
70   XBT_INFO("I'm done. See you!");
71   return 0;
72 }
73
74 int main(int argc, char *argv[])
75 {
76   MSG_init(&argc, argv);
77   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
78              "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
79
80   MSG_create_environment(argv[1]);          /* - Load the platform description */
81
82   MSG_function_register("master", master);  /* - Register the function to be executed by the processes */
83   MSG_function_register("worker", worker);
84   MSG_launch_application(argv[2]);          /* - Deploy the application */
85
86   msg_error_t res = MSG_main();             /* - Run the simulation */
87
88   XBT_INFO("Simulation time %g", MSG_get_clock());
89
90   return res != MSG_OK;
91 }