2 edge.c -- edge tree management
3 Copyright (C) 2000-2006 Guus Sliepen <guus@tinc-vpn.org>,
4 2000-2005 Ivo Timmermans
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 avl_tree_t *edge_weight_tree; /* Tree with all edges, sorted on weight */
35 static int edge_compare(const edge_t *a, const edge_t *b)
37 return strcmp(a->to->name, b->to->name);
40 static int edge_weight_compare(const edge_t *a, const edge_t *b)
44 result = a->weight - b->weight;
49 result = strcmp(a->from->name, b->from->name);
54 return strcmp(a->to->name, b->to->name);
61 edge_weight_tree = avl_alloc_tree((avl_compare_t) edge_weight_compare, NULL);
64 avl_tree_t *new_edge_tree(void)
68 return avl_alloc_tree((avl_compare_t) edge_compare, (avl_action_t) free_edge);
71 void free_edge_tree(avl_tree_t *edge_tree)
75 avl_delete_tree(edge_tree);
82 avl_delete_tree(edge_weight_tree);
85 /* Creation and deletion of connection elements */
87 edge_t *new_edge(void)
91 return xmalloc_and_zero(sizeof(edge_t));
94 void free_edge(edge_t *e)
98 sockaddrfree(&e->address);
103 void edge_add(edge_t *e)
107 avl_insert(edge_weight_tree, e);
108 avl_insert(e->from->edge_tree, e);
110 e->reverse = lookup_edge(e->to, e->from);
113 e->reverse->reverse = e;
116 void edge_del(edge_t *e)
121 e->reverse->reverse = NULL;
123 avl_delete(edge_weight_tree, e);
124 avl_delete(e->from->edge_tree, e);
127 edge_t *lookup_edge(node_t *from, node_t *to)
136 return avl_search(from->edge_tree, &v);
139 void dump_edges(void)
141 avl_node_t *node, *node2;
148 logger(LOG_DEBUG, _("Edges:"));
150 for(node = node_tree->head; node; node = node->next) {
152 for(node2 = n->edge_tree->head; node2; node2 = node2->next) {
154 address = sockaddr2hostname(&e->address);
155 logger(LOG_DEBUG, _(" %s to %s at %s options %lx weight %d"),
156 e->from->name, e->to->name, address, e->options, e->weight);
161 logger(LOG_DEBUG, _("End of edges."));