Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[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, sg_routing_edge_t src, sg_routing_edge_t dst,
16     sg_platf_route_cbarg_t res,double *lat)
17 {
18   *lat = 0.0;
19 }
20
21 static sg_platf_route_cbarg_t none_get_bypass_route(AS_t rc,
22     sg_routing_edge_t src,
23     sg_routing_edge_t dst, double *lat) {
24   return NULL;
25 }
26
27 static int none_parse_PU(AS_t rc, sg_routing_edge_t elm) {
28   XBT_DEBUG("Load process unit \"%s\"", elm->name);
29   xbt_dynar_push_as(rc->index_network_elm,sg_routing_edge_t,elm);
30   /* don't care about PUs */
31   return -1;
32 }
33
34 static int none_parse_AS(AS_t rc, sg_routing_edge_t elm) {
35   XBT_DEBUG("Load Autonomous system \"%s\"", elm->name);
36   xbt_dynar_push_as(rc->index_network_elm,sg_routing_edge_t,elm);
37   /* even don't care about sub-ASes -- I'm as nihilist as an old punk*/
38   return -1;
39 }
40
41 /* Creation routing model functions */
42 AS_t model_none_create() {
43   return model_none_create_sized(sizeof(s_as_t));
44 }
45 AS_t model_none_create_sized(size_t childsize) {
46   AS_t new_component = xbt_malloc0(childsize);
47   new_component->parse_PU = none_parse_PU;
48   new_component->parse_AS = none_parse_AS;
49   new_component->parse_route = NULL;
50   new_component->parse_ASroute = NULL;
51   new_component->parse_bypassroute = NULL;
52   new_component->get_route_and_latency = none_get_route_and_latency;
53   new_component->get_onelink_routes = none_get_onelink_routes;
54   new_component->get_bypass_route = none_get_bypass_route;
55   new_component->finalize = model_none_finalize;
56   new_component->routing_sons = xbt_dict_new_homogeneous(NULL);
57   new_component->index_network_elm = xbt_dynar_new(sizeof(char*),NULL);
58
59   return new_component;
60 }
61
62 void model_none_finalize(AS_t as) {
63   xbt_dict_free(&as->routing_sons);
64   xbt_dynar_free(&as->index_network_elm);
65   if(as->link_up_down_list)
66     xbt_dynar_free(&as->link_up_down_list);
67   xbt_free(as);
68 }
69