Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'dev/s4u_tuto_fixes' into 'master'
[simgrid.git] / teshsuite / surf / surf_usage2 / surf_usage2.cpp
1 /* A few basic tests for the surf library                                   */
2
3 /* Copyright (c) 2004-2022. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "simgrid/host.h"
9 #include "simgrid/kernel/routing/NetZoneImpl.hpp" // full type for NetZoneImpl object
10 #include "simgrid/s4u/Engine.hpp"
11 #include "simgrid/zone.h"
12 #include "src/kernel/EngineImpl.hpp"
13 #include "src/kernel/resource/CpuImpl.hpp"
14 #include "src/kernel/resource/NetworkModel.hpp"
15 #include "src/surf/surf_interface.hpp"
16 #include "xbt/config.hpp"
17
18 XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test, "Messages specific for surf example");
19
20 int main(int argc, char** argv)
21 {
22   int running;
23
24   simgrid::s4u::Engine e(&argc, argv);
25
26   simgrid::s4u::Engine::set_config("network/model:CM02");
27   simgrid::s4u::Engine::set_config("cpu/model:Cas01");
28
29   xbt_assert(argc > 1, "Usage: %s platform.xml\n", argv[0]);
30   e.load_platform(argv[1]);
31
32   /*********************** HOST ***********************************/
33   simgrid::s4u::Host* hostA = e.host_by_name("Cpu A");
34   simgrid::s4u::Host* hostB = e.host_by_name("Cpu B");
35
36   /* Let's do something on it */
37   hostA->get_cpu()->execution_start(1000.0, -1);
38   hostB->get_cpu()->execution_start(1000.0, -1);
39   hostB->get_cpu()->sleep(7.32);
40
41   const_sg_netzone_t as_zone = e.netzone_by_name_or_null("AS0");
42   auto net_model             = as_zone->get_impl()->get_network_model();
43   net_model->communicate(hostA, hostB, 150.0, -1.0);
44
45   e.get_impl()->solve(-1.0); /* Takes traces into account. Returns 0.0 */
46   do {
47     simgrid::kernel::resource::Action* action = nullptr;
48     running                                   = 0;
49
50     double now = simgrid::s4u::Engine::get_clock();
51     XBT_INFO("Next Event : %g", now);
52
53     for (auto const& model : e.get_all_models()) {
54       if (not model->get_started_action_set()->empty()) {
55         XBT_DEBUG("\t Running that model");
56         running = 1;
57       }
58
59       action = model->extract_failed_action();
60       while (action != nullptr) {
61         XBT_INFO("   * Done Action");
62         XBT_DEBUG("\t * Failed Action: %p", action);
63         action->unref();
64         action = model->extract_failed_action();
65       }
66
67       action = model->extract_done_action();
68       while (action != nullptr) {
69         XBT_INFO("   * Done Action");
70         XBT_DEBUG("\t * Done Action: %p", action);
71         action->unref();
72         action = model->extract_done_action();
73       }
74     }
75   } while (running && e.get_impl()->solve(-1.0) >= 0.0);
76
77   XBT_INFO("Simulation Terminated");
78   return 0;
79 }