Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9039cdc96a7eae074fa9825914ae5c50276edf3a
[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, *data;
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   xbt_dynar_foreach(hosts, it, data) {
27     sg_host_t host = (sg_host_t)data;
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   xbt_lib_foreach(as_router_lib, cursor, key, data) {
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->isAS()?"AS":"host"));
37   }
38
39   SD_exit();
40   return 0;
41 }