Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Avoid using surf_network_model global
[simgrid.git] / teshsuite / surf / surf_usage2 / surf_usage2.cpp
1 /* A few basic tests for the surf library                                   */
2
3 /* Copyright (c) 2004-2021. 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/zone.h"
11 #include "src/surf/cpu_interface.hpp"
12 #include "src/surf/network_interface.hpp"
13 #include "src/surf/surf_interface.hpp"
14 #include "surf/surf.hpp"
15 #include "xbt/config.hpp"
16
17 XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test, "Messages specific for surf example");
18
19 int main(int argc, char** argv)
20 {
21   int running;
22
23   surf_init(&argc, argv); /* Initialize some common structures */
24
25   simgrid::config::set_parse("network/model:CM02");
26   simgrid::config::set_parse("cpu/model:Cas01");
27
28   xbt_assert(argc > 1, "Usage: %s platform.xml\n", argv[0]);
29   parse_platform_file(argv[1]);
30
31   /*********************** HOST ***********************************/
32   simgrid::s4u::Host* hostA = sg_host_by_name("Cpu A");
33   simgrid::s4u::Host* hostB = sg_host_by_name("Cpu B");
34
35   /* Let's do something on it */
36   hostA->pimpl_cpu->execution_start(1000.0);
37   hostB->pimpl_cpu->execution_start(1000.0);
38   hostB->pimpl_cpu->sleep(7.32);
39
40   sg_netzone_t as_zone                               = sg_zone_get_by_name("AS0");
41   simgrid::kernel::resource::NetworkModel* net_model = as_zone->get_impl()->get_network_model();
42   net_model->communicate(hostA, hostB, 150.0, -1.0);
43
44   surf_solve(-1.0); /* Takes traces into account. Returns 0.0 */
45   do {
46     simgrid::kernel::resource::Action* action = nullptr;
47     running                                   = 0;
48
49     double now = surf_get_clock();
50     XBT_INFO("Next Event : %g", now);
51
52     for (auto const& model : all_existing_models) {
53       if (model->get_started_action_set()->size() != 0) {
54         XBT_DEBUG("\t Running that model");
55         running = 1;
56       }
57
58       action = model->extract_failed_action();
59       while (action != nullptr) {
60         XBT_INFO("   * Done Action");
61         XBT_DEBUG("\t * Failed Action: %p", action);
62         action->unref();
63         action = model->extract_failed_action();
64       }
65
66       action = model->extract_done_action();
67       while (action != nullptr) {
68         XBT_INFO("   * Done Action");
69         XBT_DEBUG("\t * Done Action: %p", action);
70         action->unref();
71         action = model->extract_done_action();
72       }
73     }
74   } while (running && surf_solve(-1.0) >= 0.0);
75
76   XBT_INFO("Simulation Terminated");
77   return 0;
78 }