Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Improve the doc of the S4U actors
[simgrid.git] / examples / s4u / basic / s4u_basic.cpp
1 /* Copyright (c) 2006-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 <xbt/sysdep.h>
7
8 #include "simgrid/s4u.h"
9
10 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "a sample log category");
11
12 class Worker {
13 public:
14   void operator()() {
15     XBT_INFO("Hello s4u, I'm ready to serve");
16     char *msg = static_cast<char*>(simgrid::s4u::this_actor::recv(
17       *simgrid::s4u::Mailbox::byName("worker")));
18     XBT_INFO("I received '%s'",msg);
19     XBT_INFO("I'm done. See you.");
20   }
21 };
22
23 class Master {
24 public:
25   void operator()() {
26     const char *msg = "GaBuZoMeu";
27     XBT_INFO("Hello s4u, I have something to send");
28     simgrid::s4u::this_actor::send(*simgrid::s4u::Mailbox::byName("worker"), xbt_strdup(msg), strlen(msg));
29     XBT_INFO("I'm done. See you.");
30   }
31 };
32
33
34 int main(int argc, char **argv) {
35   simgrid::s4u::Engine *e = new simgrid::s4u::Engine(&argc,argv);
36   e->loadPlatform("../../platforms/two_hosts.xml");
37   new simgrid::s4u::Actor("worker", simgrid::s4u::Host::by_name("Tremblay"), Worker());
38   new simgrid::s4u::Actor("master", simgrid::s4u::Host::by_name("Jupiter"), 0, Master());
39   e->run();
40   return 0;
41 }