Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge commit '045db1657e870c721be490b411868f4181a12ced' into surf++
[simgrid.git] / testsuite / surf / surf_usage2.c
1 /* A few basic tests for the surf library                                   */
2
3 /* Copyright (c) 2004-2012. 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 #ifdef __BORLANDC__
9 #pragma hdrstop
10 #endif
11
12 #include <stdio.h>
13 #include "simgrid/sg_config.h"
14 #include "surf/surf.h"
15 #include "surf/surf_resource.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
42 void test(char *platform);
43 void test(char *platform)
44 {
45   void *workstationA = NULL;
46   void *workstationB = NULL;
47   double now = -1.0;
48   int running;
49
50   xbt_cfg_set_parse(_sg_cfg_set, "network/model:CM02");
51   xbt_cfg_set_parse(_sg_cfg_set, "cpu/model:Cas01");
52   parse_platform_file(platform);
53
54   /*********************** WORKSTATION ***********************************/
55   workstationA =
56       surf_workstation_resource_by_name("Cpu A");
57   workstationB =
58       surf_workstation_resource_by_name("Cpu B");
59
60   /* Let's check that those two processors exist */
61   XBT_DEBUG("%s : %p", surf_resource_name(workstationA), workstationA);
62   XBT_DEBUG("%s : %p", surf_resource_name(workstationB), workstationB);
63
64   /* Let's do something on it */
65   surf_workstation_execute(workstationA, 1000.0);
66   surf_workstation_execute(workstationB, 1000.0);
67   surf_workstation_sleep(workstationB, 7.32);
68
69   surf_workstation_model_communicate(surf_workstation_model, workstationA, workstationB, 150.0, -1.0);
70
71   surf_solve(-1.0);                 /* Takes traces into account. Returns 0.0 */
72   do {
73     surf_action_t action = NULL;
74     unsigned int iter;
75     surf_model_t model = NULL;
76     running = 0;
77
78     now = surf_get_clock();
79     XBT_DEBUG("Next Event : %g", now);
80
81     xbt_dynar_foreach(model_list, iter, model) {
82       XBT_DEBUG("\t %s actions", surf_model_name(model));
83       while ((action = xbt_swag_extract(surf_model_failed_action_set((surf_model_t)model)))) {
84         XBT_DEBUG("\t * Failed : %p", action);
85         surf_action_unref(action);
86       }
87       while ((action = xbt_swag_extract(surf_model_done_action_set((surf_model_t)model)))) {
88         XBT_DEBUG("\t * Done : %p", action);
89         surf_action_unref(action);
90       }
91       if (xbt_swag_size(surf_model_running_action_set((surf_model_t)model))) {
92         XBT_DEBUG("running %s", surf_model_name(model));
93         running = 1;
94       }
95     }
96   } while (running && surf_solve(-1.0) >= 0.0);
97
98   XBT_DEBUG("Simulation Terminated");
99
100 }
101
102 #ifdef __BORLANDC__
103 #pragma argsused
104 #endif
105
106 int main(int argc, char **argv)
107 {
108   surf_init(&argc, argv);       /* Initialize some common structures */
109   if (argc == 1) {
110     fprintf(stderr, "Usage : %s platform.txt\n", argv[0]);
111     surf_exit();
112     return 1;
113   }
114   test(argv[1]);
115
116   surf_exit();
117   return 0;
118 }