Logo AND Algorithmique Numérique Distribuée

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