Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'lua'
[simgrid.git] / teshsuite / simdag / platforms / basic_parsing_test.c
1 /* Copyright (c) 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "simdag/simdag.h"
10 #include "surf/surf_private.h"
11
12 extern routing_global_t global_routing;
13
14 int main(int argc, char **argv)
15 {
16   /* initialisation of SD */
17
18   SD_workstation_t w1, w2;
19   const SD_workstation_t *workstations;
20   const SD_link_t *route;
21   const char *name1;
22   const char *name2;
23   int route_size, i, j, k;
24   int list_size;
25
26   setvbuf(stdout, NULL, _IOLBF, 0);
27
28   SD_init(&argc, argv);
29
30   /* creation of the environment */
31   SD_create_environment(argv[1]);
32   printf("Workstation number: %d, link number: %d\n",
33          SD_workstation_get_number(), SD_link_get_number());
34
35   if (argc >= 3) {
36   for(i=1;i<argc;i++)
37   {
38                 if (!strcmp(argv[i], "ONE_LINK")) {
39                   workstations = SD_workstation_get_list();
40                   w1 = workstations[0];
41                   w2 = workstations[1];
42                   name1 = SD_workstation_get_name(w1);
43                   name2 = SD_workstation_get_name(w2);
44
45                   printf("Route between %s and %s\n", name1, name2);
46                   route = SD_route_get_list(w1, w2);
47                   route_size = SD_route_get_size(w1, w2);
48                   printf("Route size %d\n", route_size);
49                   for (i = 0; i < route_size; i++) {
50                         printf("   Link %s: latency = %f, bandwidth = %f\n",
51                                    SD_link_get_name(route[i]),
52                                    SD_link_get_current_latency(route[i]),
53                                    SD_link_get_current_bandwidth(route[i]));
54                   }
55                   printf("Route latency = %f, route bandwidth = %f\n",
56                                  SD_route_get_current_latency(w1, w2),
57                                  SD_route_get_current_bandwidth(w1, w2));
58                   i=argc;
59                 }else{
60                         if (!strcmp(argv[i], "FULL_LINK")) {
61                           workstations = SD_workstation_get_list();
62                           list_size = SD_workstation_get_number();
63                           for (i = 0; i < list_size; i++) {
64                                 w1 = workstations[i];
65                                 name1 = SD_workstation_get_name(w1);
66                                 for (j = 0; j < list_size; j++) {
67                                   w2 = workstations[j];
68                                   name2 = SD_workstation_get_name(w2);
69                                   printf("Route between %s and %s\n", name1, name2);
70                                   route = SD_route_get_list(w1, w2);
71                                   route_size = SD_route_get_size(w1, w2);
72                                   printf("\tRoute size %d\n", route_size);
73                                   for (k = 0; k < route_size; k++) {
74                                         printf("\tLink %s: latency = %f, bandwidth = %f\n",
75                                                    SD_link_get_name(route[k]),
76                                                    SD_link_get_current_latency(route[k]),
77                                                    SD_link_get_current_bandwidth(route[k]));
78                                   }
79                                   printf("\tRoute latency = %f, route bandwidth = %f\n",
80                                                  SD_route_get_current_latency(w1, w2),
81                                                  SD_route_get_current_bandwidth(w1, w2));
82                                 }
83                           }
84                           i=argc;
85                         }
86                 }
87   }
88   }
89
90   SD_exit();
91   return 0;
92 }