Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bd04422b6d5964585d0e99f603ee9f9b0a9d1194
[simgrid.git] / teshsuite / simdag / flatifier / flatifier.cpp
1 /* Copyright (c) 2008-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <xbt/xbt_os_time.h>
7
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Host.hpp"
10
11 #include "simgrid/simdag.h"
12
13 #include "src/kernel/routing/NetPoint.hpp"
14 #include "src/surf/network_interface.hpp"
15
16 #include <algorithm>
17
18 XBT_LOG_NEW_DEFAULT_CATEGORY(flatifier, "Logging specific to this platform parsing tool");
19
20 static bool parse_cmdline(int* timings, char** platformFile, int argc, char** argv)
21 {
22   bool parse_ok = true;
23   for (int i = 1; i < argc; i++) {
24     if (std::strlen(argv[i]) > 1 && argv[i][0] == '-' && argv[i][1] == '-') {
25       if (not std::strcmp(argv[i], "--timings")) {
26         *timings = 1;
27       } else {
28         parse_ok = false;
29         break;
30       }
31     } else {
32       *platformFile = argv[i];
33     }
34   }
35   return parse_ok;
36 }
37
38 static void create_environment(xbt_os_timer_t parse_time, const char *platformFile)
39 {
40   try {
41     xbt_os_cputimer_start(parse_time);
42     SD_create_environment(platformFile);
43     xbt_os_cputimer_stop(parse_time);
44   }
45   catch (std::exception& e) {
46     xbt_die("Error while loading %s: %s", platformFile, e.what());
47   }
48 }
49
50 static void dump_platform()
51 {
52   int version = 4;
53   xbt_dict_t props = nullptr;
54   xbt_dict_cursor_t cursor = nullptr;
55   char* key;
56   char* data;
57
58   std::printf("<?xml version='1.0'?>\n");
59   std::printf("<!DOCTYPE platform SYSTEM \"http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\">\n");
60   std::printf("<platform version=\"%d\">\n", version);
61   std::printf("<AS id=\"AS0\" routing=\"Full\">\n");
62
63   // Hosts
64   unsigned int totalHosts = sg_host_count();
65   sg_host_t* hosts        = sg_host_list();
66   std::sort(hosts, hosts + totalHosts,
67             [](sg_host_t a, sg_host_t b) { return strcmp(sg_host_get_name(a), sg_host_get_name(b)) < 0; });
68
69   for (unsigned int i = 0; i < totalHosts; i++) {
70     std::printf("  <host id=\"%s\" speed=\"%.0f\"", hosts[i]->getCname(), sg_host_speed(hosts[i]));
71     props = sg_host_get_properties(hosts[i]);
72     if (hosts[i]->getCoreCount() > 1) {
73       std::printf(" core=\"%d\"", hosts[i]->getCoreCount());
74     }
75     if (props && not xbt_dict_is_empty(props)) {
76       std::printf(">\n");
77       xbt_dict_foreach (props, cursor, key, data) {
78         std::printf("    <prop id=\"%s\" value=\"%s\"/>\n", key, data);
79       }
80       std::printf("  </host>\n");
81     } else {
82       std::printf("/>\n");
83     }
84   }
85
86   // Routers
87   std::vector<simgrid::kernel::routing::NetPoint*> netcardList;
88   simgrid::s4u::Engine::getInstance()->getNetpointList(&netcardList);
89   std::sort(netcardList.begin(), netcardList.end(),
90             [](simgrid::kernel::routing::NetPoint* a, simgrid::kernel::routing::NetPoint* b) {
91               return a->name() < b->name();
92             });
93
94   for (auto srcCard : netcardList)
95     if (srcCard->isRouter())
96       std::printf("  <router id=\"%s\"/>\n", srcCard->cname());
97
98   // Links
99   unsigned int totalLinks    = sg_link_count();
100   simgrid::s4u::Link** links = sg_link_list();
101
102   std::sort(links, links + totalLinks,
103             [](simgrid::s4u::Link* a, simgrid::s4u::Link* b) { return strcmp(sg_link_name(a), sg_link_name(b)) < 0; });
104
105   for (unsigned int i = 0; i < totalLinks; i++) {
106     simgrid::s4u::Link* link = links[i];
107     std::printf("  <link id=\"");
108
109     std::printf("%s\" bandwidth=\"%.0f\" latency=\"%.9f\"", link->name(), link->bandwidth(), link->latency());
110     if (sg_link_is_shared(link)) {
111       std::printf("/>\n");
112     } else {
113       std::printf(" sharing_policy=\"FATPIPE\"/>\n");
114     }
115   }
116
117   for (unsigned int it_src = 0; it_src < totalHosts; it_src++) { // Routes from host
118     simgrid::s4u::Host* host1                      = hosts[it_src];
119     simgrid::kernel::routing::NetPoint* netcardSrc = host1->pimpl_netpoint;
120     for (unsigned int it_dst = 0; it_dst < totalHosts; it_dst++) { // Routes to host
121       simgrid::s4u::Host* host2 = hosts[it_dst];
122       std::vector<simgrid::surf::LinkImpl*> route;
123       simgrid::kernel::routing::NetPoint* netcardDst = host2->pimpl_netpoint;
124       simgrid::kernel::routing::NetZoneImpl::getGlobalRoute(netcardSrc, netcardDst, &route, nullptr);
125       if (not route.empty()) {
126         std::printf("  <route src=\"%s\" dst=\"%s\">\n  ", host1->getCname(), host2->getCname());
127         for (auto link : route)
128           std::printf("<link_ctn id=\"%s\"/>", link->cname());
129         std::printf("\n  </route>\n");
130       }
131     }
132     for (auto netcardDst : netcardList) { // to router
133       if (netcardDst->isRouter()) {
134         std::printf("  <route src=\"%s\" dst=\"%s\">\n  ", host1->getCname(), netcardDst->cname());
135         std::vector<simgrid::surf::LinkImpl*> route;
136         simgrid::kernel::routing::NetZoneImpl::getGlobalRoute(netcardSrc, netcardDst, &route, nullptr);
137         for (auto link : route)
138           std::printf("<link_ctn id=\"%s\"/>", link->cname());
139         std::printf("\n  </route>\n");
140       }
141     }
142   }
143
144   for (auto value1 : netcardList) { // Routes from router
145     if (value1->isRouter()) {
146       for (auto value2 : netcardList) { // to router
147         if (value2->isRouter()) {
148           std::printf("  <route src=\"%s\" dst=\"%s\">\n  ", value1->cname(), value2->cname());
149           std::vector<simgrid::surf::LinkImpl*> route;
150           simgrid::kernel::routing::NetZoneImpl::getGlobalRoute(value1, value2, &route, nullptr);
151           for (auto link : route)
152             std::printf("<link_ctn id=\"%s\"/>", link->cname());
153           std::printf("\n  </route>\n");
154         }
155       }
156       for (unsigned int it_dst = 0; it_dst < totalHosts; it_dst++) { // Routes to host
157         simgrid::s4u::Host* host2 = hosts[it_dst];
158         std::printf("  <route src=\"%s\" dst=\"%s\">\n  ", value1->cname(), host2->getCname());
159         std::vector<simgrid::surf::LinkImpl*> route;
160         simgrid::kernel::routing::NetPoint* netcardDst = host2->pimpl_netpoint;
161         simgrid::kernel::routing::NetZoneImpl::getGlobalRoute(value1, netcardDst, &route, nullptr);
162         for (auto link : route)
163           std::printf("<link_ctn id=\"%s\"/>", link->cname());
164         std::printf("\n  </route>\n");
165       }
166     }
167   }
168
169   std::printf("</AS>\n");
170   std::printf("</platform>\n");
171   std::free(hosts);
172   std::free(links);
173 }
174
175 int main(int argc, char** argv)
176 {
177   char* platformFile = nullptr;
178   int timings        = 0;
179
180   xbt_os_timer_t parse_time = xbt_os_timer_new();
181
182   SD_init(&argc, argv);
183
184   xbt_assert(parse_cmdline(&timings, &platformFile, argc, argv) && platformFile,
185              "Invalid command line arguments: expected [--timings] platformFile");
186
187   XBT_DEBUG("%d,%s", timings, platformFile);
188
189   create_environment(parse_time, platformFile);
190
191   if (timings) {
192     XBT_INFO("Parsing time: %fs (%zu hosts, %d links)", xbt_os_timer_elapsed(parse_time), sg_host_count(),
193              sg_link_count());
194   } else {
195     dump_platform();
196   }
197
198   xbt_os_timer_free(parse_time);
199
200   return 0;
201 }