Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a83445f6fdc4b32a16b99d478c15c8df89148c2f
[simgrid.git] / examples / s4u / actor-lifetime / s4u-actor-lifetime.cpp
1 /* Copyright (c) 2007-2018. 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 C++ file acts as the foil to the corresponding XML file, where the
7    action takes place: Actors are started and stopped at predefined time.   */
8
9 #include "simgrid/s4u.hpp"
10
11 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Messages specific for this s4u example");
12
13 /* Executed on process termination, to display a message helping to understand the output */
14 static int my_onexit(void*, void*)
15 {
16   XBT_INFO("Exiting now (done sleeping or got killed).");
17   return 0;
18 }
19
20 /* Just sleep until termination */
21 class sleeper {
22
23 public:
24   explicit sleeper(std::vector<std::string> /*args*/)
25   {
26     XBT_INFO("Hello! I go to sleep.");
27     simgrid::s4u::this_actor::onExit(my_onexit, NULL);
28
29     simgrid::s4u::this_actor::sleep_for(10);
30   }
31   void operator()() { XBT_INFO("Done sleeping."); }
32 };
33
34 int main(int argc, char* argv[])
35 {
36   simgrid::s4u::Engine e(&argc, argv);
37
38   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
39                        "\tExample: %s msg_platform.xml msg_deployment.xml\n",
40              argv[0], argv[0]);
41
42   e.loadPlatform(argv[1]); /* - Load the platform description */
43   e.registerFunction<sleeper>("sleeper");
44   e.loadDeployment(argv[2]); /* - Deploy the sleeper processes with explicit start/kill times */
45
46   e.run(); /* - Run the simulation */
47
48   return 0;
49 }