Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
83c5c5067fa695d55d4d4ba590755b4246c60c1e
[simgrid.git] / teshsuite / surf / surf_usage / surf_usage.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 <stdio.h>
10 #include "simgrid/sg_config.h"
11 #include "surf/surf.h"
12 #include "surf/surfxml_parse.h" // for reset callback
13 #include "src/surf/surf_interface.hpp"
14
15 #include "xbt/log.h"
16 XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test,
17                              "Messages specific for surf example");
18
19 const char *string_action(e_surf_action_state_t state);
20 const char *string_action(e_surf_action_state_t state)
21 {
22   switch (state) {
23   case (SURF_ACTION_READY):
24     return "SURF_ACTION_READY";
25   case (SURF_ACTION_RUNNING):
26     return "SURF_ACTION_RUNNING";
27   case (SURF_ACTION_FAILED):
28     return "SURF_ACTION_FAILED";
29   case (SURF_ACTION_DONE):
30     return "SURF_ACTION_DONE";
31   case (SURF_ACTION_NOT_IN_THE_SYSTEM):
32     return "SURF_ACTION_NOT_IN_THE_SYSTEM";
33   default:
34     return "INVALID STATE";
35   }
36 }
37
38 void test(char *platform);
39 void test(char *platform)
40 {
41   sg_host_t hostA = NULL;
42   sg_host_t hostB = NULL;
43   surf_action_t actionA = NULL;
44   surf_action_t actionB = NULL;
45   surf_action_t actionC = NULL;
46   e_surf_action_state_t stateActionA;
47   e_surf_action_state_t stateActionB;
48   e_surf_action_state_t stateActionC;
49   double now = -1.0;
50   xbt_cfg_set_parse(_sg_cfg_set, "cpu/model:Cas01");
51   xbt_cfg_set_parse(_sg_cfg_set, "network/model:CM02");
52   parse_platform_file(platform);
53
54   /*********************** CPU ***********************************/
55   XBT_DEBUG("%p", surf_cpu_model_pm);
56   hostA = sg_host_by_name("Cpu A");
57   hostB = sg_host_by_name("Cpu B");
58
59   /* Let's check that those two processors exist */
60   XBT_DEBUG("%s : %p", surf_cpu_name(hostA->p_cpu), hostA);
61   XBT_DEBUG("%s : %p", surf_cpu_name(hostB->p_cpu), hostB);
62
63   /* Let's do something on it */
64   actionA = surf_host_execute(hostA, 1000.0);
65   actionB = surf_host_execute(hostB, 1000.0);
66   actionC = surf_host_sleep(hostB, 7.32);
67
68   /* Use whatever calling style you want... */
69   stateActionA = actionA->getState(); /* When you know actionA model type */
70   stateActionB = actionB->getState(); /* If you're unsure about it's model type */
71   stateActionC = actionC->getState(); /* When you know actionA model type */
72
73   /* And just look at the state of these tasks */
74   XBT_DEBUG("actionA : %p (%s)", actionA, string_action(stateActionA));
75   XBT_DEBUG("actionB : %p (%s)", actionB, string_action(stateActionB));
76   XBT_DEBUG("actionC : %p (%s)", actionB, string_action(stateActionC));
77
78   /*********************** Network *******************************/
79   XBT_DEBUG("%p", surf_network_model);
80
81   /* Let's do something on it */
82   surf_network_model_communicate(surf_network_model, hostA, hostB, 150.0, -1.0);
83
84   surf_solve(-1.0);                 /* Takes traces into account. Returns 0.0 */
85   do {
86     surf_action_t action = NULL;
87     now = surf_get_clock();
88     XBT_DEBUG("Next Event : %g", now);
89     XBT_DEBUG("\t CPU actions");
90     while ((action =
91             surf_model_extract_failed_action_set((surf_model_t)surf_cpu_model_pm))) {
92       XBT_DEBUG("\t * Failed : %p", action);
93       action->unref();
94     }
95     while ((action =
96             surf_model_extract_done_action_set((surf_model_t)surf_cpu_model_pm))) {
97       XBT_DEBUG("\t * Done : %p", action);
98       action->unref();
99     }
100     XBT_DEBUG("\t Network actions");
101     while ((action =
102             surf_model_extract_failed_action_set((surf_model_t)surf_network_model))) {
103       XBT_DEBUG("\t * Failed : %p", action);
104       action->unref();
105     }
106     while ((action =
107             surf_model_extract_done_action_set((surf_model_t)surf_network_model))) {
108       XBT_DEBUG("\t * Done : %p", action);
109       action->unref();
110     }
111
112   } while ((surf_model_running_action_set_size((surf_model_t)surf_network_model) ||
113             surf_model_running_action_set_size((surf_model_t)surf_cpu_model_pm)) &&
114            surf_solve(-1.0) >= 0.0);
115
116   XBT_DEBUG("Simulation Terminated");
117 }
118
119 int main(int argc, char **argv)
120 {
121   surf_init(&argc, argv);       /* Initialize some common structures */
122   if (argc == 1) {
123     fprintf(stderr, "Usage : %s platform.xml\n", argv[0]);
124     return 1;
125   }
126   test(argv[1]);
127
128   surf_exit();
129   return 0;
130 }