Logo AND Algorithmique Numérique Distribuée

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