Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
nicer API to the Netcard type
[simgrid.git] / teshsuite / simdag / platforms / is_router_test.cpp
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "simgrid/simdag.h"
10 #include "surf/surf.h"
11 #include "src/surf/surf_routing.hpp"
12
13 int main(int argc, char **argv)
14 {
15   /* SD initialization */
16   int size;
17   xbt_lib_cursor_t cursor = NULL;
18   char *key, *data;
19
20   SD_init(&argc, argv);
21
22   /* creation of the environment */
23   SD_create_environment(argv[1]);
24
25   size = xbt_dict_length(host_list) + xbt_lib_length(as_router_lib);
26
27   printf("Host number: %zu, link number: %d, elmts number: %d\n", sg_host_count(), sg_link_count(), size);
28
29   xbt_dict_foreach(host_list, cursor, key, data) {
30     simgrid::surf::NetCard * nc = sg_netcard_by_name_or_null(key);
31     printf("   - Seen: \"%s\". Type: %s\n", key, nc->isRouter() ? "router" : (nc->isAS()?"AS":"host"));
32   }
33
34   xbt_lib_foreach(as_router_lib, cursor, key, data) {
35     simgrid::surf::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 }