Logo AND Algorithmique Numérique Distribuée

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