Logo AND Algorithmique Numérique Distribuée

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