Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use for push_as and get_as for dynar
[simgrid.git] / src / surf / surf_routing_none.c
1 /* Copyright (c) 2009, 2010, 2011. 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 "surf_routing_private.h"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_none, surf, "Routing part of surf");
10
11 static xbt_dynar_t none_get_onelink_routes(AS_t rc) {
12   return NULL;
13 }
14
15 static void none_get_route_and_latency(AS_t rc, network_element_t src, network_element_t dst,
16                                        route_t res,double *lat)
17 {
18 }
19
20 static route_t none_get_bypass_route(AS_t rc,
21     network_element_t src,
22     network_element_t dst) {
23   return NULL;
24 }
25
26 static int none_parse_PU(AS_t rc, network_element_t elm) {
27   XBT_DEBUG("Load process unit \"%s\"", elm->name);
28   xbt_dynar_push_as(rc->index_network_elm,network_element_t,elm);
29   /* don't care about PUs */
30   return -1;
31 }
32
33 static int none_parse_AS(AS_t rc, network_element_t elm) {
34   XBT_DEBUG("Load Autonomous system \"%s\"", elm->name);
35   xbt_dynar_push_as(rc->index_network_elm,network_element_t,elm);
36   /* even don't care about sub-ASes -- I'm as nihilist as an old punk*/
37   return -1;
38 }
39
40 /* Creation routing model functions */
41 AS_t model_none_create() {
42   return model_none_create_sized(sizeof(s_as_t));
43 }
44 AS_t model_none_create_sized(size_t childsize) {
45   AS_t new_component = xbt_malloc0(childsize);
46   new_component->parse_PU = none_parse_PU;
47   new_component->parse_AS = none_parse_AS;
48   new_component->parse_route = NULL;
49   new_component->parse_ASroute = NULL;
50   new_component->parse_bypassroute = NULL;
51   new_component->get_route_and_latency = none_get_route_and_latency;
52   new_component->get_onelink_routes = none_get_onelink_routes;
53   new_component->get_bypass_route = none_get_bypass_route;
54   new_component->finalize = model_none_finalize;
55   new_component->routing_sons = xbt_dict_new_homogeneous(NULL);
56   new_component->index_network_elm = xbt_dynar_new(sizeof(char*),NULL);
57
58   return new_component;
59 }
60
61 void model_none_finalize(AS_t as) {
62   xbt_dict_free(&as->routing_sons);
63   xbt_dynar_free(&as->index_network_elm);
64   xbt_free(as);
65 }
66