Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Those two files are now compatible.
[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   SD_init(&argc, argv);
27
28   /* creation of the environment */
29   SD_create_environment(argv[1]);
30   printf("Workstation number: %d, link number: %d\n",
31          SD_workstation_get_number(), SD_link_get_number());
32
33   if (argc >= 3) {
34   for(i=1;i<argc;i++)
35   {
36                 if (!strcmp(argv[i], "ONE_LINK")) {
37                   workstations = SD_workstation_get_list();
38                   w1 = workstations[0];
39                   w2 = workstations[1];
40                   name1 = SD_workstation_get_name(w1);
41                   name2 = SD_workstation_get_name(w2);
42
43                   printf("Route between %s and %s\n", name1, name2);
44                   route = SD_route_get_list(w1, w2);
45                   route_size = SD_route_get_size(w1, w2);
46                   printf("Route size %d\n", route_size);
47                   for (i = 0; i < route_size; i++) {
48                         printf("   Link %s: latency = %f, bandwidth = %f\n",
49                                    SD_link_get_name(route[i]),
50                                    SD_link_get_current_latency(route[i]),
51                                    SD_link_get_current_bandwidth(route[i]));
52                   }
53                   printf("Route latency = %f, route bandwidth = %f\n",
54                                  SD_route_get_current_latency(w1, w2),
55                                  SD_route_get_current_bandwidth(w1, w2));
56                   i=argc;
57                 }else{
58                         if (!strcmp(argv[i], "FULL_LINK")) {
59                           workstations = SD_workstation_get_list();
60                           list_size = SD_workstation_get_number();
61                           for (i = 0; i < list_size; i++) {
62                                 w1 = workstations[i];
63                                 name1 = SD_workstation_get_name(w1);
64                                 for (j = 0; j < list_size; j++) {
65                                   w2 = workstations[j];
66                                   name2 = SD_workstation_get_name(w2);
67                                   printf("Route between %s and %s\n", name1, name2);
68                                   route = SD_route_get_list(w1, w2);
69                                   route_size = SD_route_get_size(w1, w2);
70                                   printf("\tRoute size %d\n", route_size);
71                                   for (k = 0; k < route_size; k++) {
72                                         printf("\tLink %s: latency = %f, bandwidth = %f\n",
73                                                    SD_link_get_name(route[k]),
74                                                    SD_link_get_current_latency(route[k]),
75                                                    SD_link_get_current_bandwidth(route[k]));
76                                   }
77                                   printf("\tRoute latency = %f, route bandwidth = %f\n",
78                                                  SD_route_get_current_latency(w1, w2),
79                                                  SD_route_get_current_bandwidth(w1, w2));
80                                 }
81                           }
82                           i=argc;
83                         }
84                 }
85   }
86   }
87
88   SD_exit();
89   return 0;
90 }