Remove global edge_tree.
[tinc] / src / edge.c
1 /*
2     edge.c -- edge tree management
3     Copyright (C) 2000-2002 Guus Sliepen <guus@sliepen.eu.org>,
4                   2000-2002 Ivo Timmermans <ivo@o2w.nl>
5
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.
10
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.
15
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.
19
20     $Id: edge.c,v 1.1.2.13 2002/09/06 10:23:52 guus Exp $
21 */
22
23 #include "config.h"
24
25 #include <stdio.h>
26 #include <syslog.h>
27 #include <string.h>
28
29 #include <avl_tree.h>
30 #include <list.h>
31
32 #include "net.h"        /* Don't ask. */
33 #include "netutl.h"
34 #include "config.h"
35 #include "conf.h"
36 #include <utils.h>
37 #include "subnet.h"
38 #include "edge.h"
39 #include "node.h"
40
41 #include "xalloc.h"
42 #include "system.h"
43
44 avl_tree_t *edge_weight_tree; /* Tree with all edges, sorted on weight */
45
46 int edge_compare(edge_t *a, edge_t *b)
47 {
48   return strcmp(a->to->name, b->to->name);
49 }
50
51 int edge_weight_compare(edge_t *a, edge_t *b)
52 {
53   int result;
54
55   result = a->weight - b->weight;
56
57   if(result)
58     return result;
59   else
60     return edge_compare(a, b);
61 }
62
63 void init_edges(void)
64 {
65 cp
66   edge_weight_tree = avl_alloc_tree((avl_compare_t)edge_weight_compare, NULL);
67 cp
68 }
69
70 avl_tree_t *new_edge_tree(void)
71 {
72 cp
73   return avl_alloc_tree((avl_compare_t)edge_compare, NULL);
74 cp
75 }
76
77 void free_edge_tree(avl_tree_t *edge_tree)
78 {
79 cp
80   avl_delete_tree(edge_tree);
81 cp
82 }
83
84 void exit_edges(void)
85 {
86 cp
87   avl_delete_tree(edge_weight_tree);
88 cp
89 }
90
91 /* Creation and deletion of connection elements */
92
93 edge_t *new_edge(void)
94 {
95   edge_t *e;
96 cp
97   e = (edge_t *)xmalloc_and_zero(sizeof(*e));
98 cp
99   return e;
100 }
101
102 void free_edge(edge_t *e)
103 {
104 cp
105   free(e);
106 cp
107 }
108
109 void edge_add(edge_t *e)
110 {
111 cp
112   avl_insert(edge_weight_tree, e);
113   avl_insert(e->from->edge_tree, e);
114 cp
115   e->reverse = lookup_edge(e->to, e->from);
116   if(e->reverse)
117     e->reverse->reverse = e;
118 cp
119 }
120
121 void edge_del(edge_t *e)
122 {
123 cp
124   if(e->reverse)
125     e->reverse->reverse = NULL;
126 cp
127   avl_delete(edge_weight_tree, e);
128   avl_delete(e->from->edge_tree, e);
129 cp
130 }
131
132 edge_t *lookup_edge(node_t *from, node_t *to)
133 {
134   edge_t v;
135 cp
136   v.from = from;
137   v.to = to;
138
139   return avl_search(from->edge_tree, &v);
140 }
141
142 void dump_edges(void)
143 {
144   avl_node_t *node, *node2;
145   node_t *n;
146   edge_t *e;
147   char *address;
148 cp
149   syslog(LOG_DEBUG, _("Edges:"));
150
151   for(node = node_tree->head; node; node = node->next)
152     {
153       n = (node_t *)node->data;
154       for(node2 = n->edge_tree->head; node2; node2 = node2->next)
155         {
156           e = (edge_t *)node2->data;
157           address = sockaddr2hostname(&e->address);
158           syslog(LOG_DEBUG, _(" %s to %s at %s options %lx weight %d"),
159                  e->from->name, e->to->name, address,
160                  e->options, e->weight);
161           free(address);
162         }
163     }
164
165   syslog(LOG_DEBUG, _("End of edges."));
166 cp
167 }