Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mark a deprecated function as such
[simgrid.git] / teshsuite / surf / surf_usage2 / surf_usage2.cpp
1 /* A few basic tests for the surf library                                   */
2
3 /* Copyright (c) 2004-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "simgrid/sg_config.h"
10 #include "simgrid/host.h"
11 #include "surf/surf.h"
12 #include "src/surf/surf_interface.hpp"
13 #include "src/surf/cpu_interface.hpp"
14
15 #include "xbt/log.h"
16 XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test, "Messages specific for surf example");
17
18 int main(int argc, char **argv)
19 {
20   sg_host_t hostA = nullptr;
21   sg_host_t hostB = nullptr;
22   double now = -1.0;
23   int running;
24
25   surf_init(&argc, argv);       /* Initialize some common structures */
26
27   xbt_cfg_set_parse("network/model:CM02");
28   xbt_cfg_set_parse("cpu/model:Cas01");
29
30   xbt_assert(argc >1, "Usage : %s platform.txt\n", argv[0]);
31   parse_platform_file(argv[1]);
32
33   /*********************** HOST ***********************************/
34   hostA = sg_host_by_name("Cpu A");
35   hostB = sg_host_by_name("Cpu B");
36
37   /* Let's check that those two processors exist */
38   XBT_DEBUG("%s : %p", sg_host_get_name(hostA), hostA);
39   XBT_DEBUG("%s : %p", sg_host_get_name(hostB), hostB);
40
41   /* Let's do something on it */
42   hostA->pimpl_cpu->execution_start(1000.0);
43   hostB->pimpl_cpu->execution_start(1000.0);
44   surf_host_sleep(hostB, 7.32);
45
46   surf_network_model_communicate(surf_network_model, hostA, hostB, 150.0, -1.0);
47
48   surf_solve(-1.0);                 /* Takes traces into account. Returns 0.0 */
49   do {
50     surf_action_t action = nullptr;
51     unsigned int iter;
52     surf_model_t model = nullptr;
53     running = 0;
54
55     now = surf_get_clock();
56     XBT_INFO("Next Event : %g", now);
57
58     xbt_dynar_foreach(all_existing_models, iter, model) {
59       if (surf_model_running_action_set_size((surf_model_t)model)) {
60         XBT_DEBUG("\t Running that model");
61         running = 1;
62       }
63       while ((action = surf_model_extract_failed_action_set((surf_model_t)model))) {
64         XBT_INFO("   * Done Action");
65         XBT_DEBUG("\t * Failed Action: %p", action);
66         action->unref();
67       }
68       while ((action = surf_model_extract_done_action_set((surf_model_t)model))) {
69         XBT_INFO("   * Done Action");
70         XBT_DEBUG("\t * Done Action: %p", action);
71         action->unref();
72       }
73     }
74   } while (running && surf_solve(-1.0) >= 0.0);
75
76   XBT_INFO("Simulation Terminated");
77   surf_exit();
78   return 0;
79 }