]> git.ipfire.org Git - thirdparty/squid.git/blob - include/heap.h
Merge from trunk. and Save Comm::Connection in IoCallback
[thirdparty/squid.git] / include / heap.h
1 /*
2 * $Id$
3 *
4 * AUTHOR: John Dilley, Hewlett Packard
5 *
6 * SQUID Web Proxy Cache http://www.squid-cache.org/
7 * ----------------------------------------------------------
8 *
9 * Squid is the result of efforts by numerous individuals from
10 * the Internet community; see the CONTRIBUTORS file for full
11 * details. Many organizations have provided support for Squid's
12 * development; see the SPONSORS file for full details. Squid is
13 * Copyrighted (C) 2001 by the Regents of the University of
14 * California; see the COPYRIGHT file for full details. Squid
15 * incorporates software developed and/or copyrighted by other
16 * sources; see the CREDITS file for full details.
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
31 *
32 */
33
34 /****************************************************************************
35 * Copyright (C) 1999 by Hewlett Packard
36 *
37 * Heap data structure. Used to store objects for cache replacement. The
38 * heap is implemented as a contiguous array in memory. Heap sort and heap
39 * update are done in-place. The heap is ordered with the smallest value at
40 * the top of the heap (as in the smallest object key value). Child nodes
41 * are larger than their parent.
42 ****************************************************************************/
43 #ifndef SQUID_HEAP_H
44 #define SQUID_HEAP_H
45
46 /*
47 * Function for generating heap keys. The first argument will typically be
48 * a dws_md_p passed in as a void *. Should find a way to get type safety
49 * without having heap know all about metadata objects... The second arg is
50 * the current aging factor for the heap.
51 */
52 typedef unsigned long heap_mutex_t;
53 typedef void * heap_t;
54 typedef double heap_key;
55 typedef heap_key heap_key_func(heap_t, heap_key);
56
57
58 /*
59 * Heap node. Has a key value generated by a key_func, id (array index) so
60 * it can be quickly found in its heap, and a pointer to a data object that
61 * key_func can generate a key from.
62 */
63 typedef struct _heap_node {
64 heap_key key;
65 unsigned long id;
66 heap_t data;
67 } heap_node;
68
69
70 /*
71 * Heap object. Holds an array of heap_node objects along with a heap size
72 * (array length), the index of the last heap element, and a key generation
73 * function. Also stores aging factor for this heap.
74 */
75 typedef struct _heap {
76 heap_mutex_t lock;
77 unsigned long size;
78 unsigned long last;
79 heap_key_func *gen_key; /* key generator for heap */
80 heap_key age; /* aging factor for heap */
81 heap_node **nodes;
82 } heap;
83
84 /****************************************************************************
85 * Public functions
86 ****************************************************************************/
87
88 /*
89 * Create and initialize a new heap.
90 */
91 SQUIDCEXTERN heap *new_heap(int init_size, heap_key_func gen_key);
92
93 /*
94 * Delete a heap and clean up its memory. Does not delete what the heap
95 * nodes are pointing to!
96 */
97 SQUIDCEXTERN void delete_heap(heap *);
98
99 /*
100 * Insert a new node into a heap, returning a pointer to it. The heap_node
101 * object returned is used to update or delete a heap object. Nothing else
102 * should be done with this data structure (especially modifying it!) The
103 * heap does not assume ownership of the data passed to it.
104 */
105 SQUIDCEXTERN heap_node *heap_insert(heap *hp, heap_t dat);
106
107 /*
108 * Delete a node out of a heap. Returns the heap data from the deleted
109 * node. The caller is responsible for freeing this data.
110 */
111 SQUIDCEXTERN heap_t heap_delete(heap *, heap_node * elm);
112
113 /*
114 * The semantics of this routine is the same as the followings:
115 * heap_delete(hp, elm);
116 * heap_insert(hp, dat);
117 * Returns the old data object from elm (the one being replaced). The
118 * caller must free this as necessary.
119 */
120 SQUIDCEXTERN heap_t heap_update(heap *, heap_node * elm, heap_t dat);
121
122 /*
123 * Generate a heap key for a given data object. Alternative macro form:
124 */
125 #ifdef MACRO_DEBUG
126 SQUIDCEXTERN heap_key heap_gen_key(heap * hp, heap_t dat);
127 #else
128 #define heap_gen_key(hp,md) ((hp)->gen_key((md),(hp)->age))
129 #endif /* MACRO_DEBUG */
130
131
132 /*
133 * Extract the minimum (root) element and maintain the heap property.
134 * Returns the data pointed to by the root node, which the caller must
135 * free as necessary.
136 */
137 SQUIDCEXTERN heap_t heap_extractmin(heap *);
138
139 /*
140 * Extract the last leaf node (does not change the heap property).
141 * Returns the data that had been in the heap which the caller must free if
142 * necessary. Note that the last node is guaranteed to be less than its
143 * parent, but may not be less than any of the other (leaf or parent) notes
144 * in the tree. This operation is fast but imprecise.
145 */
146 SQUIDCEXTERN heap_t heap_extractlast(heap * hp);
147
148 /*
149 * Get the root key, the nth key, the root (smallest) element, or the nth
150 * element. None of these operations modify the heap.
151 */
152 SQUIDCEXTERN heap_key heap_peepminkey(heap *);
153 SQUIDCEXTERN heap_key heap_peepkey(heap *, int n);
154
155 SQUIDCEXTERN heap_t heap_peepmin(heap *);
156 SQUIDCEXTERN heap_t heap_peep(heap *, int n);
157
158 /*
159 * Is the heap empty? How many nodes (data objects) are in it?
160 */
161 #ifdef MACRO_DEBUG
162 SQUIDCEXTERN int heap_empty(heap *);
163 SQUIDCEXTERN int heap_nodes(heap *);
164 #else /* MACRO_DEBUG */
165 #define heap_nodes(heap) ((heap)->last)
166 #define heap_empty(heap) (((heap)->last <= 0) ? 1 : 0)
167 #endif /* MACRO_DEBUG */
168
169 /*
170 * Print the heap or a node in the heap.
171 */
172 SQUIDCEXTERN void heap_print(heap *);
173 SQUIDCEXTERN void heap_printnode(char *msg, heap_node * elm);
174
175 SQUIDCEXTERN int verify_heap_property(heap *);
176
177 #endif /* SQUID_HEAP_H */