Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
012e68347421c6b1a8123d884d276825c9760866
[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->cname(),
27            nc->isRouter() ? "router" : (nc->isNetZone() ? "netzone" : "host"));
28   }
29   xbt_dynar_free(&hosts);
30
31   xbt_lib_cursor_t cursor = nullptr;
32   char* key;
33   void *ignored;
34   xbt_lib_foreach(as_router_lib, cursor, key, ignored) {
35     simgrid::kernel::routing::NetCard * nc = sg_netcard_by_name_or_null(key);
36     printf("   - Seen: \"%s\". Type: %s\n", key, nc->isRouter() ? "router" : (nc->isNetZone() ? "netzone" : "host"));
37   }
38
39   SD_exit();
40   return 0;
41 }