Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d42d2b713a65e568e2a668b004f30306b1d80875
[simgrid.git] / testsuite / surf / surf_usage2.c
1 /* A few basic tests for the surf library                                   */
2
3 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. 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 "surf/surf.h"
14 #include "surf/surfxml_parse.h" // for reset callback
15
16 #include "xbt/log.h"
17 XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test,
18                              "Messages specific for surf example");
19
20 const char *string_action(e_surf_action_state_t state);
21 const char *string_action(e_surf_action_state_t state)
22 {
23   switch (state) {
24   case (SURF_ACTION_READY):
25     return "SURF_ACTION_READY";
26   case (SURF_ACTION_RUNNING):
27     return "SURF_ACTION_RUNNING";
28   case (SURF_ACTION_FAILED):
29     return "SURF_ACTION_FAILED";
30   case (SURF_ACTION_DONE):
31     return "SURF_ACTION_DONE";
32   case (SURF_ACTION_NOT_IN_THE_SYSTEM):
33     return "SURF_ACTION_NOT_IN_THE_SYSTEM";
34   default:
35     return "INVALID STATE";
36   }
37 }
38
39
40 void test(char *platform);
41 void test(char *platform)
42 {
43   void *workstationA = NULL;
44   void *workstationB = NULL;
45   double now = -1.0;
46   int running;
47
48   int workstation_id =
49       find_model_description(surf_workstation_model_description, "CLM03");
50   surf_parse_reset_callbacks();
51   surf_workstation_model_description[workstation_id].
52       model_init_preparse();
53   parse_platform_file(platform);
54   if (surf_workstation_model_description[workstation_id].
55       model_init_postparse)
56     surf_workstation_model_description[workstation_id].
57         model_init_postparse();
58
59   /*********************** WORKSTATION ***********************************/
60   workstationA =
61       surf_workstation_resource_by_name("Cpu A");
62   workstationB =
63       surf_workstation_resource_by_name("Cpu B");
64
65   /* Let's check that those two processors exist */
66   XBT_DEBUG("%s : %p", surf_resource_name(workstationA), workstationA);
67   XBT_DEBUG("%s : %p", surf_resource_name(workstationB), workstationB);
68
69   /* Let's do something on it */
70   surf_workstation_model->extension.workstation.execute(workstationA, 1000.0);
71   surf_workstation_model->extension.workstation.execute(workstationB, 1000.0);
72       surf_workstation_model->extension.workstation.sleep(workstationB, 7.32);
73
74   surf_workstation_model->extension.workstation.
75       communicate(workstationA, workstationB, 150.0, -1.0);
76
77   surf_solve(-1.0);                 /* Takes traces into account. Returns 0.0 */
78   do {
79     surf_action_t action = NULL;
80     unsigned int iter;
81     surf_model_t model = NULL;
82     running = 0;
83
84     now = surf_get_clock();
85     XBT_DEBUG("Next Event : %g", now);
86
87     xbt_dynar_foreach(model_list, iter, model) {
88       XBT_DEBUG("\t %s actions", model->name);
89       while ((action = xbt_swag_extract(model->states.failed_action_set))) {
90         XBT_DEBUG("\t * Failed : %p", action);
91         model->action_unref(action);
92       }
93       while ((action = xbt_swag_extract(model->states.done_action_set))) {
94         XBT_DEBUG("\t * Done : %p", action);
95         model->action_unref(action);
96       }
97       if (xbt_swag_size(model->states.running_action_set)) {
98         XBT_DEBUG("running %s", model->name);
99         running = 1;
100       }
101     }
102   } while (running && surf_solve(-1.0) >= 0.0);
103
104   XBT_DEBUG("Simulation Terminated");
105
106 }
107
108 #ifdef __BORLANDC__
109 #pragma argsused
110 #endif
111
112 int main(int argc, char **argv)
113 {
114   surf_init(&argc, argv);       /* Initialize some common structures */
115   if (argc == 1) {
116     fprintf(stderr, "Usage : %s platform.txt\n", argv[0]);
117     surf_exit();
118     return 1;
119   }
120   test(argv[1]);
121
122   surf_exit();
123   return 0;
124 }