Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'condvar'
[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
10 int main(int argc, char **argv)
11 {
12   /* SD initialization */
13   int size;
14   xbt_lib_cursor_t cursor = nullptr;
15   char *key, *data;
16
17   SD_init(&argc, argv);
18
19   /* creation of the environment */
20   SD_create_environment(argv[1]);
21
22   size = xbt_dict_length(host_list) + xbt_lib_length(as_router_lib);
23
24   printf("Host number: %zu, link number: %d, elmts number: %d\n", sg_host_count(), sg_link_count(), size);
25
26   xbt_dict_foreach(host_list, cursor, key, data) {
27     simgrid::routing::NetCard * nc = sg_netcard_by_name_or_null(key);
28     printf("   - Seen: \"%s\". Type: %s\n", key, nc->isRouter() ? "router" : (nc->isAS()?"AS":"host"));
29   }
30
31   xbt_lib_foreach(as_router_lib, cursor, key, data) {
32     simgrid::routing::NetCard * nc = sg_netcard_by_name_or_null(key);
33     printf("   - Seen: \"%s\". Type: %s\n", key, nc->isRouter() ? "router" : (nc->isAS()?"AS":"host"));
34   }
35
36   SD_exit();
37   return 0;
38 }