Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix msg-start-kill-time
[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 extern "C" {
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_none, surf, "Routing part of surf");
11 }
12
13 static xbt_dynar_t none_get_onelink_routes(AS_t rc) {
14   return NULL;
15 }
16
17 static void none_get_route_and_latency(AS_t rc, sg_routing_edge_t src, sg_routing_edge_t dst,
18     sg_platf_route_cbarg_t res,double *lat)
19 {
20   *lat = 0.0;
21 }
22
23 static void none_get_graph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges, AS_t rc)
24 {
25         XBT_INFO("No routing no graph");
26 }
27
28 static sg_platf_route_cbarg_t none_get_bypass_route(AS_t rc,
29     sg_routing_edge_t src,
30     sg_routing_edge_t dst, double *lat) {
31   return NULL;
32 }
33
34 static int none_parse_PU(AS_t rc, sg_routing_edge_t elm) {
35   XBT_DEBUG("Load process unit \"%s\"", elm->name);
36   xbt_dynar_push_as(rc->index_network_elm,sg_routing_edge_t,elm);
37   /* don't care about PUs */
38   return -1;
39 }
40
41 static int none_parse_AS(AS_t rc, sg_routing_edge_t elm) {
42   XBT_DEBUG("Load Autonomous system \"%s\"", elm->name);
43   xbt_dynar_push_as(rc->index_network_elm,sg_routing_edge_t,elm);
44   /* even don't care about sub-ASes -- I'm as nihilist as an old punk*/
45   return -1;
46 }
47
48 /* Creation routing model functions */
49 AS_t model_none_create() {
50   return model_none_create_sized(sizeof(s_as_t));
51 }
52 AS_t model_none_create_sized(size_t childsize) {
53   AS_t new_component = xbt_malloc0(childsize);
54   new_component->parse_PU = none_parse_PU;
55   new_component->parse_AS = none_parse_AS;
56   new_component->parse_route = NULL;
57   new_component->parse_ASroute = NULL;
58   new_component->parse_bypassroute = NULL;
59   new_component->get_route_and_latency = none_get_route_and_latency;
60   new_component->get_onelink_routes = none_get_onelink_routes;
61   new_component->get_bypass_route = none_get_bypass_route;
62   new_component->finalize = model_none_finalize;
63   new_component->get_graph = none_get_graph;
64   new_component->routing_sons = xbt_dict_new_homogeneous(NULL);
65   new_component->index_network_elm = xbt_dynar_new(sizeof(char*),NULL);
66
67   return new_component;
68 }
69
70 void model_none_finalize(AS_t as) {
71   xbt_dict_free(&as->routing_sons);
72   xbt_dynar_free(&as->index_network_elm);
73   xbt_dynar_free(&as->link_up_down_list);
74   xbt_free(as);
75 }
76