Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
e8f99bb9525af2e381e61fb66997612344b75b37
[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 {
35         if(!strcmp(argv[2],"ONE_LINK"))
36         {
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]), SD_link_get_current_latency(route[i]),
50                           SD_link_get_current_bandwidth(route[i]));
51           }
52           printf("Route latency = %f, route bandwidth = %f\n",
53                         SD_route_get_current_latency(w1, w2),
54                         SD_route_get_current_bandwidth(w1, w2));
55
56           printf("%s is router : %d\n",name1,global_routing->is_router(name1));
57         }
58         if(!strcmp(argv[2],"FULL_LINK"))
59         {
60                         workstations = SD_workstation_get_list();
61                         list_size = SD_workstation_get_number();
62                         for(i = 0; i < list_size; i++)
63                         {
64                                 for(j = 0 ; j < list_size; j++)
65                                 {
66                                                   w1 = workstations[i];
67                                                   w2 = workstations[j];
68                                                   name1 = SD_workstation_get_name(w1);
69                                                   name2 = SD_workstation_get_name(w2);
70                                                   printf("Route between %s and %s\n", name1, name2);
71                                                   route = SD_route_get_list(w1, w2);
72                                                   route_size = SD_route_get_size(w1, w2);
73                                                   printf("\tRoute size %d\n", route_size);
74                                                   for (k = 0; k < route_size; k++) {
75                                                           printf("\tLink %s: latency = %f, bandwidth = %f\n",
76                                                                   SD_link_get_name(route[k]), 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
85         }
86
87 }
88
89   SD_exit();
90   return 0;
91 }