Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b201d7050c9d720ed5e1602612baeba54d38961d
[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 "surf/surf_routing.h"
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   printf("Host count: %zu, link number: %d\n", sg_host_count(), sg_link_count());
19
20   int it;
21   sg_host_t host;
22   xbt_dynar_foreach(hosts, it, host) {
23     simgrid::kernel::routing::NetCard * nc = host->pimpl_netcard;
24     printf("   - Seen: \"%s\". Type: %s\n", host->cname(),
25            nc->isRouter() ? "router" : (nc->isNetZone() ? "netzone" : "host"));
26   }
27   xbt_dynar_free(&hosts);
28
29   printf("NetCards count: %d\n", xbt_dict_length(netcards_dict));
30   xbt_lib_cursor_t cursor = nullptr;
31   char* key;
32   void *ignored;
33   xbt_dict_foreach (netcards_dict, 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->isNetZone() ? "netzone" : "host"));
36   }
37
38   SD_exit();
39   return 0;
40 }