Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
de61d34a3e2a5b54aae804f62ce2496ed68dbb5b
[simgrid.git] / examples / s4u / async-waitall / s4u-async-waitall.cpp
1 /* Copyright (c) 2010-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 /* This example shows how to block on the completion of a set of communications.
7  *
8  * As for the other asynchronous examples, the sender initiate all the messages it wants to send and
9  * pack the resulting simgrid::s4u::CommPtr objects in a vector. All messages thus occurs concurrently.
10  *
11  * The sender then blocks until all ongoing communication terminate, using simgrid::s4u::Comm::wait_all()
12  *
13  */
14
15 #include "simgrid/s4u.hpp"
16 #include "xbt/str.h"
17 #include <cstdlib>
18 #include <iostream>
19
20 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_async_waitall, "Messages specific for this s4u example");
21
22 class sender {
23   long messages_count;
24   long receivers_count;
25   double msg_size; /* in bytes */
26
27 public:
28   explicit sender(std::vector<std::string> args)
29 {
30   xbt_assert(args.size() == 4, "This function expects 4 parameters from the XML deployment file but got %zu",
31              args.size());
32   messages_count  = std::stol(args[1]);
33   msg_size        = std::stod(args[2]);
34   receivers_count = std::stol(args[3]);
35 }
36 void operator()()
37 {
38   std::vector<simgrid::s4u::CommPtr>* pending_comms = new std::vector<simgrid::s4u::CommPtr>();
39
40   /* Start dispatching all messages to receivers, in a round robin fashion */
41   for (int i = 0; i < messages_count; i++) {
42
43     std::string mboxName          = std::string("receiver-") + std::to_string(i % receivers_count);
44     simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(mboxName);
45     std::string msgName           = std::string("Message ") + std::to_string(i);
46     char* payload = xbt_strdup(msgName.c_str()); // copy the data we send: 'msgName' is not a stable storage location
47
48     XBT_INFO("Send '%s' to '%s'", msgName.c_str(), mboxName.c_str());
49     /* Create a communication representing the ongoing communication */
50     simgrid::s4u::CommPtr comm = mbox->put_async((void*)payload, msg_size);
51     /* Add this comm to the vector of all known comms */
52     pending_comms->push_back(comm);
53   }
54   /* Start sending messages to let the workers know that they should stop */
55   for (int i = 0; i < receivers_count; i++) {
56     std::string mbox_name         = std::string("receiver-") + std::to_string(i % receivers_count);
57     simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(mbox_name);
58     char* payload                 = xbt_strdup("finalize"); // Make a copy of the data we will send
59
60     simgrid::s4u::CommPtr comm = mbox->put_async((void*)payload, 0);
61     pending_comms->push_back(comm);
62     XBT_INFO("Send 'finalize' to 'receiver-%ld'", i % receivers_count);
63   }
64   XBT_INFO("Done dispatching all messages");
65
66   /* Now that all message exchanges were initiated, wait for their completion in one single call */
67   simgrid::s4u::Comm::wait_all(pending_comms);
68
69   XBT_INFO("Goodbye now!");
70   delete pending_comms;
71 }
72 };
73
74 class receiver {
75   simgrid::s4u::MailboxPtr mbox;
76
77 public:
78   explicit receiver(std::vector<std::string> args)
79 {
80   xbt_assert(args.size() == 2, "This function expects 2 parameters from the XML deployment file but got %zu",
81              args.size());
82   int id = xbt_str_parse_int(args[1].c_str(), "Any process of this example must have a numerical name, not %s");
83   std::string mbox_name = std::string("receiver-") + std::to_string(id);
84   mbox                  = simgrid::s4u::Mailbox::byName(mbox_name);
85 }
86 void operator()()
87 {
88   XBT_INFO("Wait for my first message");
89   while (1) {
90     char* received = static_cast<char*>(mbox->get());
91     XBT_INFO("I got a '%s'.", received);
92     if (std::strcmp(received, "finalize") == 0) { /* If it's a finalize message, we're done */
93       xbt_free(received);
94       break;
95     }
96     /* Otherwise receiving the message was all we were supposed to do */
97     xbt_free(received);
98   }
99 }
100 };
101
102 int main(int argc, char *argv[])
103 {
104   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n", argv[0]);
105
106   simgrid::s4u::Engine e(&argc, argv);
107   e.registerFunction<sender>("sender");
108   e.registerFunction<receiver>("receiver");
109
110   e.loadPlatform(argv[1]);
111   e.loadDeployment(argv[2]);
112   e.run();
113
114   return 0;
115 }