Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sonar: ignore 'Pointers should not be cast to integral types' and bump version to...
[simgrid.git] / teshsuite / simdag / is-router / is-router.cpp
1 /* Copyright (c) 2008-2016. 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 "simgrid/s4u/host.hpp"
7 #include "simgrid/simdag.h"
8 #include "src/kernel/routing/NetCard.hpp"
9 #include "src/surf/surf_routing.hpp"
10 #include <stdio.h>
11
12 int main(int argc, char **argv)
13 {
14   SD_init(&argc, argv);
15   SD_create_environment(argv[1]);
16
17   xbt_dynar_t hosts = sg_hosts_as_dynar();
18   int size = sg_host_count() + xbt_lib_length(as_router_lib);
19
20   printf("Host number: %zu, link number: %d, elmts number: %d\n", sg_host_count(), sg_link_count(), size);
21
22   int it;
23   sg_host_t host;
24   xbt_dynar_foreach(hosts, it, host) {
25     simgrid::kernel::routing::NetCard * nc = host->pimpl_netcard;
26     printf("   - Seen: \"%s\". Type: %s\n", host->name().c_str(), nc->isRouter() ? "router" : (nc->isAS()?"AS":"host"));
27   }
28   xbt_dynar_free(&hosts);
29
30   xbt_lib_cursor_t cursor = nullptr;
31   char* key;
32   void *ignored;
33   xbt_lib_foreach(as_router_lib, cursor, key, ignored) {
34     simgrid::kernel::routing::NetCard * nc = sg_netcard_by_name_or_null(key);
35     printf("   - Seen: \"%s\". Type: %s\n", key, nc->isRouter() ? "router" : (nc->isAS()?"AS":"host"));
36   }
37
38   SD_exit();
39   return 0;
40 }